mirror of
https://github.com/laravel/laravel.git
synced 2025-02-20 11:53:14 +08:00
Remove redundant check from bootstrap/autoload.php
Redundant check removed since compiled class file generation was removed
09964cc8c0 (diff-7b18a52eceff5eb716c1de268e98d55dL870)
This commit is contained in:
parent
547bb962f9
commit
1078776e95
@ -15,20 +15,3 @@ define('LARAVEL_START', microtime(true));
|
||||
*/
|
||||
|
||||
require __DIR__.'/../vendor/autoload.php';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Include The Compiled Class File
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| To dramatically increase your application's performance, you may use a
|
||||
| compiled class file which contains all of the classes commonly used
|
||||
| by a request. The Artisan "optimize" is used to create this file.
|
||||
|
|
||||
*/
|
||||
|
||||
$compiledPath = __DIR__.'/cache/compiled.php';
|
||||
|
||||
if (file_exists($compiledPath)) {
|
||||
require $compiledPath;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user