1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
-
-
-
- $app = new Illuminate\Foundation\Application(
- realpath(__DIR__.'/../')
- );
-
-
-
- $app->singleton(
- Illuminate\Contracts\Http\Kernel::class,
- App\Http\Kernel::class
- );
-
- $app->singleton(
- Illuminate\Contracts\Console\Kernel::class,
- App\Console\Kernel::class
- );
-
- $app->singleton(
- Illuminate\Contracts\Debug\ExceptionHandler::class,
- App\Exceptions\Handler::class
- );
-
-
-
- return $app;
|