Searched refs:twigCallable (Results 1 – 3 of 3) sorted by relevance
| /template/twigstarter/vendor/twig/twig/src/Util/ |
| D | CallableArgumentsExtractor.php | 33 private TwigCallableInterface $twigCallable, argument 35 $this->rc = new ReflectionCallable($twigCallable); 50 …t be used after named arguments for %s "%s".', $this->twigCallable->getType(), $this->twigCallable… 57 if (!$named && !$this->twigCallable->isVariadic()) { 58 $min = $this->twigCallable->getMinimalNumberOfRequiredArguments(); 62 …ment "%s" is required for %s "%s".', $argName, $this->twigCallable->getType(), $this->twigCallable… 68 if (!$callable = $this->twigCallable->getCallable()) { 70 …med arguments are not supported for %s "%s".', $this->twigCallable->getType(), $this->twigCallable… 73 …nal arguments are not supported for %s "%s".', $this->twigCallable->getType(), $this->twigCallable… 97 …d twice for %s "%s".', $callableParameterName, $this->twigCallable->getType(), $this->twigCallable… [all …]
|
| D | ReflectionCallable.php | 28 TwigCallableInterface $twigCallable, argument 30 $callable = $twigCallable->getCallable(); 47 …ack for %s "%s" is not callable in the current scope.', $twigCallable->getType(), $twigCallable->g…
|
| /template/twigstarter/vendor/twig/twig/src/Node/Expression/ |
| D | CallExpression.php | 34 $twigCallable = $this->getTwigCallable(); 35 $callable = $twigCallable->getCallable(); 40 $rc = $this->reflectCallable($twigCallable); 63 …get%s(\'%s\')->getCallable()', ucfirst($this->getAttribute('type')), $twigCallable->getDynamicName… 80 $twigCallable = $this->getAttribute('twig_callable'); 82 if ($twigCallable->needsCharset()) { 87 if ($twigCallable->needsEnvironment()) { 95 if ($twigCallable->needsContext()) { 103 if (self::needsIsSandboxed($twigCallable)) { 111 foreach ($twigCallable->getArguments() as $argument) { [all …]
|