We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a9027a commit d53b1adCopy full SHA for d53b1ad
src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php
@@ -24,7 +24,7 @@ public function bootstrap(Application $app)
24
// First we will see if we have a cache configuration file. If we do, we'll load
25
// the configuration items from that file so that it is very quick. Otherwise
26
// we will need to spin through every configuration file and load them all.
27
- if (is_file($cached = $app->getCachedConfigPath())) {
+ if (file_exists($cached = $app->getCachedConfigPath())) {
28
$items = require $cached;
29
30
$loadedFromCache = true;
0 commit comments