Browse Source

Just call app->run().

Taylor Otwell 10 years ago
parent
commit
740983e62d
1 changed files with 1 additions and 3 deletions
  1. 1 3
      public/index.php

+ 1 - 3
public/index.php

@@ -46,6 +46,4 @@ $app = require_once __DIR__.'/../bootstrap/start.php';
 |
 */
 
-use Symfony\Component\HttpFoundation\Request;
-
-$app->run(Request::createFromGlobals());
+$app->run();