Returns true if the template is still fresh.
string $name The template name:
timestamp $time The last modification time of the cached template:
Overrides Twig_LoaderInterface::isFresh
public function isFresh($name, $time) {
return filemtime($this
->findTemplate($name)) <= $time;
}