for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AlexMasterov\EquipTwig\Exception;
use AlexMasterov\EquipTwig\Exception\ExceptionInterface;
use Twig_Error_Loader;
class LoaderException extends Twig_Error_Loader implements ExceptionInterface
{
/**
* @param string $name The template name
* @param string $where The template directory path
*
* @return static
*/
public static function notFound($name, $where)
return new static(sprintf(
'Unable to find template `%s` (looked into: %s).',
$name,
$where
));
}