for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright 2017 Vladimir Jimenez
* @license https://github.com/allejo/stakx/blob/master/LICENSE.md MIT
*/
namespace allejo\stakx\Twig;
class StakxFileLoader extends \Twig_Loader_Filesystem
{
public function getCacheKey($name)
$path = $this->findTemplate($name);
return $path . filemtime($path);
}