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 e1ac69c commit 0490096Copy full SHA for 0490096
src/Illuminate/Foundation/Application.php
@@ -1322,9 +1322,9 @@ public function getCachedConfigPath()
1322
*/
1323
public function routesAreCached()
1324
{
1325
- return ($this->bound('routes.cached') &&
1326
- $this->make('routes.cached') === true) ||
1327
- $this['files']->exists($this->getCachedRoutesPath());
+ return ($this->bound('routes.cached')
+ && $this->make('routes.cached') === true)
+ || $this['files']->exists($this->getCachedRoutesPath());
1328
}
1329
1330
/**
0 commit comments