cleaning up comments for my ocd.
This commit is contained in:
parent
4528981e44
commit
c07f552c70
|
@ -20,20 +20,22 @@
|
||||||
| Public Path
|
| Public Path
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
|
||||||
| We understand that not all hosting environments allow flexibility with
|
| The public path contains the assets for your web application, such as
|
||||||
| public paths. That's why we allow you to change where your public path
|
| your JavaScript and CSS files, and also contains the primary entry
|
||||||
| is below.
|
| point for web requests into these applications from the outside.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'public' => __DIR__.'/../public',
|
'public' => __DIR__.'/../public',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
|
|--------------------------------------------------------------------------
|
||||||
| Base Path
|
| Public Path
|
||||||
|-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
|
||||||
| You probably shouldn't be editing this.
|
| The base path is the root of the Laravel installation. Most likely you
|
||||||
|
| will not need to change this value. But, if for some wild reason it
|
||||||
|
| is necessary you will do so here, just proceed with some caution.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -13,24 +13,6 @@
|
||||||
|
|
||||||
$app = new Illuminate\Foundation\Application;
|
$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
|
| Detect The Application Environment
|
||||||
|
@ -48,6 +30,25 @@
|
||||||
|
|
||||||
));
|
));
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| 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
|
| Load The Application
|
||||||
|
|
Loading…
Reference in New Issue