From 1078776e953d35bd67af0971fe78efa037d8fb83 Mon Sep 17 00:00:00 2001 From: Ivan Nikitin Date: Sat, 28 Jan 2017 14:18:03 +0300 Subject: [PATCH] Remove redundant check from bootstrap/autoload.php Redundant check removed since compiled class file generation was removed https://github.com/laravel/framework/commit/09964cc8c04674ec710af02794f774308a5c92ca#diff-7b18a52eceff5eb716c1de268e98d55dL870 --- bootstrap/autoload.php | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/bootstrap/autoload.php b/bootstrap/autoload.php index 38301379..94adc997 100644 --- a/bootstrap/autoload.php +++ b/bootstrap/autoload.php @@ -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; -}