Skip to content

Commit 1078776

Browse files
authored
Remove redundant check from bootstrap/autoload.php
Redundant check removed since compiled class file generation was removed laravel/framework@09964cc#diff-7b18a52eceff5eb716c1de268e98d55dL870
1 parent 547bb96 commit 1078776

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

bootstrap/autoload.php

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,3 @@
1515
*/
1616

1717
require __DIR__.'/../vendor/autoload.php';
18-
19-
/*
20-
|--------------------------------------------------------------------------
21-
| Include The Compiled Class File
22-
|--------------------------------------------------------------------------
23-
|
24-
| To dramatically increase your application's performance, you may use a
25-
| compiled class file which contains all of the classes commonly used
26-
| by a request. The Artisan "optimize" is used to create this file.
27-
|
28-
*/
29-
30-
$compiledPath = __DIR__.'/cache/compiled.php';
31-
32-
if (file_exists($compiledPath)) {
33-
require $compiledPath;
34-
}

0 commit comments

Comments
 (0)