diff options
Diffstat (limited to 'public/index.php')
-rw-r--r-- | public/index.php | 42 |
1 files changed, 36 insertions, 6 deletions
diff --git a/public/index.php b/public/index.php index 04aa086..716731f 100644 --- a/public/index.php +++ b/public/index.php @@ -1,17 +1,39 @@ <?php +/** + * Laravel - A PHP Framework For Web Artisans + * + * @package Laravel + * @author Taylor Otwell <taylor@laravel.com> + */ + +/* +|-------------------------------------------------------------------------- +| Register The Auto Loader +|-------------------------------------------------------------------------- +| +| Composer provides a convenient, automatically generated class loader for +| our application. We just need to utilize it! We'll simply require it +| into the script here so that we don't have to worry about manual +| loading any of our classes later on. It feels nice to relax. +| +*/ + +require __DIR__.'/../bootstrap/autoload.php'; + /* |-------------------------------------------------------------------------- -| Create The Application +| Turn On The Lights |-------------------------------------------------------------------------- | -| First we need to get an application instance. This creates an instance -| of the application / container and bootstraps the application so it -| is ready to receive HTTP / Console requests from the environment. +| We need to illuminate PHP development, so let us turn on the lights. +| This bootstraps the framework and gets it ready for use, then it +| will load up this application so that we can run it and send +| the responses back to the browser and delight our users. | */ -$app = require __DIR__.'/../bootstrap/app.php'; +$app = require_once __DIR__.'/../bootstrap/app.php'; /* |-------------------------------------------------------------------------- @@ -25,4 +47,12 @@ $app = require __DIR__.'/../bootstrap/app.php'; | */ -$app->run(); +$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class); + +$response = $kernel->handle( + $request = Illuminate\Http\Request::capture() +); + +$response->send(); + +$kernel->terminate($request, $response); |