cleaning up comments for my ocd.
This commit is contained in:
@@ -13,24 +13,6 @@
|
||||
|
||||
$app = new Illuminate\Foundation\Application;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Bind Paths
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here we are binding the paths configured in paths.php to the app. You
|
||||
| should not be changing these here but rather in paths.php.
|
||||
|
|
||||
*/
|
||||
|
||||
$paths = require __DIR__.'/paths.php';
|
||||
|
||||
$app->instance('path', $appPath = $paths['app']);
|
||||
|
||||
$app->instance('path.base', $paths['base']);
|
||||
|
||||
$app->instance('path.public', $paths['public']);
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Detect The Application Environment
|
||||
@@ -48,6 +30,25 @@ $env = $app->detectEnvironment(array(
|
||||
|
||||
));
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
$paths = require __DIR__.'/paths.php';
|
||||
|
||||
$app->instance('path', $appPath = $paths['app']);
|
||||
|
||||
$app->instance('path.base', $paths['base']);
|
||||
|
||||
$app->instance('path.public', $paths['public']);
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Load The Application
|
||||
|
||||
Reference in New Issue
Block a user