TwigBridge\Twig\Loader::exists PHP 메소드

exists() 공개 메소드

public exists ( $name )
    public function exists($name)
    {
        try {
            $this->findTemplate($name);
        } catch (Twig_Error_Loader $exception) {
            return false;
        }
        return true;
    }