Home
last modified time | relevance | path

Searched refs:getTest (Results 1 – 4 of 4) sorted by relevance

/template/twigstarter/vendor/twig/twig/src/Node/Expression/
H A DTestExpression.php32 $test = $compiler->getEnvironment()->getTest($name);
/template/twigstarter/vendor/twig/twig/src/
H A DExpressionParser.php694 list($name, $test) = $this->getTest($node->getTemplateLine());
712 private function getTest(int $line): array function in Twig\\ExpressionParser
717 if ($test = $this->env->getTest($name)) {
725 if ($test = $this->env->getTest($name)) {
H A DEnvironment.php846 public function getTest($name) function in Twig\\Environment
848 return $this->extensionSet->getTest($name);
H A DExtensionSet.php368 public function getTest(string $name) function in Twig\\ExtensionSet