Browse Source

Change how bootstrap file is loaded.

Taylor Otwell 11 years ago
parent
commit
25a84bc000
1 changed files with 3 additions and 1 deletions
  1. 3 1
      bootstrap/start.php

+ 3 - 1
bootstrap/start.php

@@ -54,7 +54,9 @@ $app->bindInstallPaths(require __DIR__.'/paths.php');
 |
 */
 
-require $app->getBootstrapFile();
+$framework = __DIR__.'/../vendor/laravel/framework/src';
+
+require $framework.'/Illuminate/Foundation/start.php';
 
 /*
 |--------------------------------------------------------------------------