Skip to content

Commit 0490096

Browse files
authored
try to guess how Taylor would format it
1 parent e1ac69c commit 0490096

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Illuminate/Foundation/Application.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1322,9 +1322,9 @@ public function getCachedConfigPath()
13221322
*/
13231323
public function routesAreCached()
13241324
{
1325-
return ($this->bound('routes.cached') &&
1326-
$this->make('routes.cached') === true) ||
1327-
$this['files']->exists($this->getCachedRoutesPath());
1325+
return ($this->bound('routes.cached')
1326+
&& $this->make('routes.cached') === true)
1327+
|| $this['files']->exists($this->getCachedRoutesPath());
13281328
}
13291329

13301330
/**

0 commit comments

Comments
 (0)