From 740983e62d34e3ddbd87dad1327e563681d5fbf9 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 28 Oct 2013 09:29:09 -0500 Subject: [PATCH] Just call app->run(). --- public/index.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/public/index.php b/public/index.php index 727793fa..f08822d9 100644 --- a/public/index.php +++ b/public/index.php @@ -46,6 +46,4 @@ | */ -use Symfony\Component\HttpFoundation\Request; - -$app->run(Request::createFromGlobals()); +$app->run();