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';
} }
} }
...@@ -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();
......
...@@ -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__.'/..');
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
......
...@@ -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