Skip to content

Commit 3ea107b

Browse files
committed
Remove support for legacy bootstrap file
1 parent 0268050 commit 3ea107b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

hyde

+1-4
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,7 @@ define('LARAVEL_START', microtime(true));
1717

1818
$autoloader = require file_exists(__DIR__.'/vendor/autoload.php') ? __DIR__.'/vendor/autoload.php' : __DIR__.'/../../autoload.php';
1919

20-
// Temporarly add compatability for old bootstrap file location making the transition easier
21-
$app = require_once file_exists(__DIR__.'/app/bootstrap.php') ? __DIR__.'/app/bootstrap.php' : __DIR__.'/bootstrap/app.php';
22-
// This is what we will use after a few releases
23-
// $app = require_once __DIR__.'/app/bootstrap.php';
20+
$app = require_once __DIR__.'/app/bootstrap.php';
2421

2522
/*
2623
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)