Skip to content

Commit 8a5f18e

Browse files
committed
Moving start.php to bootstrap/start.php to collate all bootstrapping files.
Signed-off-by: Ben Corlett <[email protected]>
1 parent 106d3b7 commit 8a5f18e

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

app/tests/TestCase.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public function createApplication()
1313

1414
$testEnvironment = 'testing';
1515

16-
return require __DIR__.'/../../start.php';
16+
return require __DIR__.'/../../bootstrap/start.php';
1717
}
1818

19-
}
19+
}

artisan

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ require __DIR__.'/bootstrap/autoload.php';
2727
|
2828
*/
2929

30-
$app = require_once __DIR__.'/start.php';
30+
$app = require_once __DIR__.'/bootstrap/start.php';
3131

3232
$app->boot();
3333

@@ -56,4 +56,4 @@ $artisan = Illuminate\Console\Application::start($app);
5656
|
5757
*/
5858

59-
$artisan->run();
59+
$artisan->run();

bootstrap/autoload.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@
4141
if (is_dir($workbench = __DIR__.'/../workbench'))
4242
{
4343
Illuminate\Workbench\Starter::start($workbench);
44-
}
44+
}

start.php bootstrap/start.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
|
2525
*/
2626

27-
$app->instance('path', $appPath = __DIR__.'/app');
27+
$app->instance('path', $appPath = __DIR__.'/../app');
2828

29-
$app->instance('path.base', __DIR__);
29+
$app->instance('path.base', __DIR__.'/..');
3030

3131
/*
3232
|--------------------------------------------------------------------------
@@ -69,4 +69,4 @@
6969
|
7070
*/
7171

72-
return $app;
72+
return $app;

public/index.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
|
3535
*/
3636

37-
$app = require_once __DIR__.'/../start.php';
37+
$app = require_once __DIR__.'/../bootstrap/start.php';
3838

3939
/*
4040
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)