Skip to content

Commit

Permalink
fixed CS
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Apr 24, 2019
1 parent bf6e73d commit f497913
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Loader/FilesystemLoader.php
Expand Up @@ -192,16 +192,16 @@ public function isFresh($name, $time)
if (null === ($path = $this->findTemplate($name)) || false === $path) {
return false;
}

return filemtime($path) < $time;
}


/**
* Checks if the template can be found.
*
* @param string $name The template name
*
* @return string|false The template name or false
* @return string|false The template name or false
* @return string|false|null The template name or false/null
*/
protected function findTemplate($name)
Expand Down

0 comments on commit f497913

Please sign in to comment.