TwigBridge\Twig\Loader::exists PHP Method

exists() public method

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