From 861041ff315edca044555e50bb8bd422aadf0687 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Sun, 19 Apr 2015 09:11:53 +0100 Subject: [PATCH] Fixed index.php --- public/index.php | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/public/index.php b/public/index.php index 8ac7ff69..7354ffe8 100644 --- a/public/index.php +++ b/public/index.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * Laravel - A PHP Framework For Web Artisans. - * - * @author Taylor Otwell - */ - /* |-------------------------------------------------------------------------- | Register The Auto Loader @@ -56,11 +50,8 @@ $app = require_once __DIR__.'/../bootstrap/app.php'; */ $kernel = $app->make('Illuminate\Contracts\Http\Kernel'); - -$response = $kernel->handle( - $request = Illuminate\Http\Request::capture() -); +$request = Illuminate\Http\Request::capture(); +$response = $kernel->handle($request); $response->send(); - $kernel->terminate($request, $response);