cleaning up comments for my ocd.

This commit is contained in:
Taylor Otwell
2013-02-06 22:04:36 -06:00
parent 4528981e44
commit c07f552c70
2 changed files with 28 additions and 25 deletions

View File

@@ -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