8000 Change how bootstrap file is loaded. · hicode/laravel@25a84bc · GitHub
[go: up one dir, main page]

Skip to content

Commit 25a84bc

Browse files
committed
Change how bootstrap file is loaded.
1 parent 227683b commit 25a84bc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bootstrap/start.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@
5454
|
5555
*/
5656

57-
require $app->getBootstrapFile();
57+
$framework = __DIR__.'/../vendor/laravel/framework/src';
58+
59+
require $framework.'/Illuminate/Foundation/start.php';
5860

5961
/*
6062
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)
0