function CallExpression::reflectCallable
2 calls to CallExpression::reflectCallable()
- CallExpression::compileCallable in vendor/
twig/ twig/ src/ Node/ Expression/ CallExpression.php - CallExpression::getCallableParameters in vendor/
twig/ twig/ src/ Node/ Expression/ CallExpression.php
File
-
vendor/
twig/ twig/ src/ Node/ Expression/ CallExpression.php, line 312
Class
Namespace
Twig\Node\ExpressionCode
private function reflectCallable(TwigCallableInterface $callable) : ReflectionCallable {
if (!$this->reflector) {
$this->reflector = new ReflectionCallable($callable);
}
return $this->reflector;
}