laravel_core #12

Open
dupsogod wants to merge 25 commits from laravel_core into master
Showing only changes of commit 4a1bc9ba4a - Show all commits
+52 -15
View File
@@ -1,18 +1,55 @@
<?php <?php
use Illuminate\Foundation\Application; /*
use Illuminate\Foundation\Configuration\Exceptions; |--------------------------------------------------------------------------
use Illuminate\Foundation\Configuration\Middleware; | Create The Application
|--------------------------------------------------------------------------
|
| The first thing we will do is create a new Laravel application instance
| which serves as the "glue" for all the components of Laravel, and is
| the IoC container for the system binding all of the various parts.
|
*/
return Application::configure(basePath: dirname(__DIR__)) $app = new Illuminate\Foundation\Application(
->withRouting( $_ENV['APP_BASE_PATH'] ?? dirname(__DIR__)
web: __DIR__.'/../routes/web.php', );
commands: __DIR__.'/../routes/console.php',
health: '/up', /*
) |--------------------------------------------------------------------------
->withMiddleware(function (Middleware $middleware): void { | Bind Important Interfaces
// |--------------------------------------------------------------------------
}) |
->withExceptions(function (Exceptions $exceptions): void { | Next, we need to bind some important interfaces into the container so
// | we will be able to resolve them when needed. The kernels serve the
})->create(); | incoming requests to this application from both the web and CLI.
|
*/
$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 The Application
|--------------------------------------------------------------------------
|
| This script returns the application instance. The instance is given to
| the calling script so we can separate the building of the instances
| from the actual running of the application and sending responses.
|
*/
return $app;