diff options
Diffstat (limited to 'bootstrap/app.php')
-rw-r--r-- | bootstrap/app.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bootstrap/app.php b/bootstrap/app.php index f2801ad..8966433 100644 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -28,17 +28,17 @@ $app = new Illuminate\Foundation\Application( $app->singleton( Illuminate\Contracts\Http\Kernel::class, - App\Http\Kernel::class + Infrastructure\Http\Kernel::class ); $app->singleton( Illuminate\Contracts\Console\Kernel::class, - App\Console\Kernel::class + Infrastructure\Console\Kernel::class ); $app->singleton( Illuminate\Contracts\Debug\ExceptionHandler::class, - App\Exceptions\Handler::class + Infrastructure\Exceptions\Handler::class ); /* |