Commit 8a5f18e1 authored by Ben Corlett's avatar Ben Corlett

Moving start.php to bootstrap/start.php to collate all bootstrapping files.

Signed-off-by: 's avatarBen Corlett <bencorlett@me.com>
parent 106d3b72
...@@ -13,7 +13,7 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase { ...@@ -13,7 +13,7 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase {
$testEnvironment = 'testing'; $testEnvironment = 'testing';
return require __DIR__.'/../../start.php'; return require __DIR__.'/../../bootstrap/start.php';
} }
} }
\ No newline at end of file
...@@ -27,7 +27,7 @@ require __DIR__.'/bootstrap/autoload.php'; ...@@ -27,7 +27,7 @@ require __DIR__.'/bootstrap/autoload.php';
| |
*/ */
$app = require_once __DIR__.'/start.php'; $app = require_once __DIR__.'/bootstrap/start.php';
$app->boot(); $app->boot();
...@@ -56,4 +56,4 @@ $artisan = Illuminate\Console\Application::start($app); ...@@ -56,4 +56,4 @@ $artisan = Illuminate\Console\Application::start($app);
| |
*/ */
$artisan->run(); $artisan->run();
\ No newline at end of file
...@@ -41,4 +41,4 @@ Illuminate\Support\ClassLoader::register(); ...@@ -41,4 +41,4 @@ Illuminate\Support\ClassLoader::register();
if (is_dir($workbench = __DIR__.'/../workbench')) if (is_dir($workbench = __DIR__.'/../workbench'))
{ {
Illuminate\Workbench\Starter::start($workbench); Illuminate\Workbench\Starter::start($workbench);
} }
\ No newline at end of file
...@@ -24,9 +24,9 @@ $app = new Illuminate\Foundation\Application; ...@@ -24,9 +24,9 @@ $app = new Illuminate\Foundation\Application;
| |
*/ */
$app->instance('path', $appPath = __DIR__.'/app'); $app->instance('path', $appPath = __DIR__.'/../app');
$app->instance('path.base', __DIR__); $app->instance('path.base', __DIR__.'/..');
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
...@@ -69,4 +69,4 @@ require $app->getBootstrapFile(); ...@@ -69,4 +69,4 @@ require $app->getBootstrapFile();
| |
*/ */
return $app; return $app;
\ No newline at end of file
...@@ -34,7 +34,7 @@ require __DIR__.'/../bootstrap/autoload.php'; ...@@ -34,7 +34,7 @@ require __DIR__.'/../bootstrap/autoload.php';
| |
*/ */
$app = require_once __DIR__.'/../start.php'; $app = require_once __DIR__.'/../bootstrap/start.php';
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment