Moving start.php to bootstrap/start.php to collate all bootstrapping files.
Signed-off-by: Ben Corlett <bencorlett@me.com>
This commit is contained in:
parent
106d3b7287
commit
8a5f18e139
|
@ -13,7 +13,7 @@ public function createApplication()
|
|||
|
||||
$testEnvironment = 'testing';
|
||||
|
||||
return require __DIR__.'/../../start.php';
|
||||
return require __DIR__.'/../../bootstrap/start.php';
|
||||
}
|
||||
|
||||
}
|
2
artisan
2
artisan
|
@ -27,7 +27,7 @@ require __DIR__.'/bootstrap/autoload.php';
|
|||
|
|
||||
*/
|
||||
|
||||
$app = require_once __DIR__.'/start.php';
|
||||
$app = require_once __DIR__.'/bootstrap/start.php';
|
||||
|
||||
$app->boot();
|
||||
|
||||
|
|
|
@ -24,9 +24,9 @@
|
|||
|
|
||||
*/
|
||||
|
||||
$app->instance('path', $appPath = __DIR__.'/app');
|
||||
$app->instance('path', $appPath = __DIR__.'/../app');
|
||||
|
||||
$app->instance('path.base', __DIR__);
|
||||
$app->instance('path.base', __DIR__.'/..');
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
|
@ -34,7 +34,7 @@
|
|||
|
|
||||
*/
|
||||
|
||||
$app = require_once __DIR__.'/../start.php';
|
||||
$app = require_once __DIR__.'/../bootstrap/start.php';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue