diff --git a/bootstrap/start.php b/bootstrap/start.php index 6db31290e5..c1851d697a 100755 --- a/bootstrap/start.php +++ b/bootstrap/start.php @@ -1,73 +1,76 @@ detectEnvironment( [ + 'local' => [ 'homestead', 'AlisonMBP' ], + 'travis-ci' => [ 'travis-linux-*', 'worker-linux-docker-*' ], + 'staging' => [ 'stagingweb01' ], + 'production' => [ 'www.yourserver.com' ] + ] ); + } -$env = $app->detectEnvironment(array( - 'local' => array('homestead','AlisonMBP'), - 'travis-ci' => array('travis-linux-*', 'worker-linux-docker-*'), - 'staging' => array('stagingweb01'), - 'production' => array('www.yourserver.com') -)); + /* + |-------------------------------------------------------------------------- + | Bind Paths + |-------------------------------------------------------------------------- + | + | Here we are binding the paths configured in paths.php to the app. You + | should not be changing these here. If you need to change these you + | may do so within the paths.php file and they will be bound here. + | + */ -/* -|-------------------------------------------------------------------------- -| Bind Paths -|-------------------------------------------------------------------------- -| -| Here we are binding the paths configured in paths.php to the app. You -| should not be changing these here. If you need to change these you -| may do so within the paths.php file and they will be bound here. -| -*/ + $app->bindInstallPaths( require __DIR__ . '/paths.php' ); -$app->bindInstallPaths(require __DIR__.'/paths.php'); + /* + |-------------------------------------------------------------------------- + | Load The Application + |-------------------------------------------------------------------------- + | + | Here we will load the Illuminate application. We'll keep this is in a + | separate location so we can isolate the creation of an application + | from the actual running of the application with a given request. + | + */ -/* -|-------------------------------------------------------------------------- -| Load The Application -|-------------------------------------------------------------------------- -| -| Here we will load the Illuminate application. We'll keep this is in a -| separate location so we can isolate the creation of an application -| from the actual running of the application with a given request. -| -*/ + $framework = $app[ 'path.base' ] . '/vendor/laravel/framework/src'; -$framework = $app['path.base'].'/vendor/laravel/framework/src'; + require $framework . '/Illuminate/Foundation/start.php'; -require $framework.'/Illuminate/Foundation/start.php'; + /* + |-------------------------------------------------------------------------- + | Return The Application + |-------------------------------------------------------------------------- + | + | This script returns the application instance. The instance is given to + | the calling script so we can separate the building of the instances + | from the actual running of the application and sending responses. + | + */ -/* -|-------------------------------------------------------------------------- -| Return The Application -|-------------------------------------------------------------------------- -| -| This script returns the application instance. The instance is given to -| the calling script so we can separate the building of the instances -| from the actual running of the application and sending responses. -| -*/ - -return $app; + return $app;