Merge pull request #4124 from vantoozz/vantoozz-patch-1

Remove redundant check from bootstrap/autoload.php
This commit is contained in:
Taylor Otwell 2017-01-28 06:58:02 -06:00 committed by GitHub
commit 1e6859799b
1 changed files with 0 additions and 17 deletions

View File

@ -15,20 +15,3 @@
*/
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;
}