Home
last modified time | relevance | path

Searched refs:getName (Results 1 – 25 of 135) sorted by relevance

123456

/template/twigstarter/vendor/twig/twig/src/Extension/
DStagingExtension.php37 if (isset($this->functions[$function->getName()])) {
38 … throw new \LogicException(\sprintf('Function "%s" is already registered.', $function->getName()));
41 $this->functions[$function->getName()] = $function;
51 if (isset($this->filters[$filter->getName()])) {
52 … throw new \LogicException(\sprintf('Filter "%s" is already registered.', $filter->getName()));
55 $this->filters[$filter->getName()] = $filter;
89 if (isset($this->tests[$test->getName()])) {
90 … throw new \LogicException(\sprintf('Test "%s" is already registered.', $test->getName()));
93 $this->tests[$test->getName()] = $test;
DAttributeExtension.php94 … $callable = new TwigFilter($attribute->name, [$reflectionClass->name, $method->getName()], [
108 …be used AsTwigFilter, but only %d defined.', $reflectionClass->getName(), $method->getName(), $cal…
118 … $callable = new TwigFunction($attribute->name, [$reflectionClass->name, $method->getName()], [
130 … used AsTwigFunction, but only %d defined.', $reflectionClass->getName(), $method->getName(), $cal…
140 … $callable = new TwigTest($attribute->name, [$reflectionClass->name, $method->getName()], [
150 …o be used AsTwigTest, but only %d defined.', $reflectionClass->getName(), $method->getName(), $cal…
173 && Environment::class === $parameters[0]->getType()->getName()
/template/twigstarter/vendor/twig/twig/src/Util/
DCallableArgumentsExtractor.php50 …ents for %s "%s".', $this->twigCallable->getType(), $this->twigCallable->getName()), $this->node->…
60 …akeCase($this->rc->getReflector()->getParameters()[$min + \count($extractedArguments)]->getName());
62 …s "%s".', $argName, $this->twigCallable->getType(), $this->twigCallable->getName()), $this->node->…
70 … are not supported for %s "%s".', $this->twigCallable->getType(), $this->twigCallable->getName()));
73 … are not supported for %s "%s".', $this->twigCallable->getType(), $this->twigCallable->getName()));
97 …lableParameterName, $this->twigCallable->getType(), $this->twigCallable->getName()), $this->node->…
103 …lableParameterName, $this->twigCallable->getType(), $this->twigCallable->getName(), implode(', ', …
126 …ableParameterName), $this->twigCallable->getType(), $this->twigCallable->getName()), $this->node->…
138 …lKey, $this->toSnakeCase($originalKey), $this->node->getSourceContext()->getName(), $this->node->g…
165 …tractedArguments)), $this->twigCallable->getType(), $this->twigCallable->getName(), implode(', ', …
[all …]
/template/twigstarter/vendor/twig/twig/src/ExpressionParser/
DAbstractExpressionParser.php18 return \sprintf('%s(%s)', ExpressionParserType::getType($this)->value, $this->getName());
33 return [$this->getName(), ...$this->getAliases()];
/template/strap/ComboStrap/Meta/Form/
H A DFormMeta.php76 $this->tabs[$tab->getName()] = $tab;
88 $fieldsArray[$element->getName()] = $element->toAssociativeArray();
100 $tabs[$tab->getName()] = $tab->toAssociativeArray();
181 $data[$field->getName()] = $value;
/template/twigstarter/vendor/twig/twig/src/Node/Expression/Variable/
DTemplateVariable.php19 public function getName(Compiler $compiler): string function in Twig\\Node\\Expression\\Variable\\TemplateVariable
30 $name = $this->getName($compiler);
DAssignTemplateVariable.php32 ->string($var->getName($compiler))
39 ->string($var->getName($compiler))
/template/twigstarter/vendor/twig/twig/src/ExpressionParser/Infix/
DIsExpressionParser.php49 …if ('defined' === $test->getName() && $expr instanceof NameExpression && null !== $alias = $parser…
62 …return new $class($expr, $ready ? $test : $test->getName(), $arguments, $stream->getCurrent()->get…
70 public function getName(): string function in Twig\\ExpressionParser\\Infix\\IsExpressionParser
DAssignmentExpressionParser.php46 $right = match ($this->getName()) {
48 … default => throw new \LogicException(\sprintf('Unknown operator: %s.', $this->getName())),
DFilterExpressionParser.php58 …return new $class($expr, $ready ? $filter : new ConstantExpression($filter->getName(), $line), $ar…
61 public function getName(): string function in Twig\\ExpressionParser\\Infix\\FilterExpressionParser
/template/twigstarter/vendor/twig/twig/src/
DExtensionSet.php172 …'Unable to add function "%s" as extensions have already been initialized.', $function->getName()));
204 return $function->withDynamicArguments($name, $function->getName(), $matches);
228 …ntf('Unable to add filter "%s" as extensions have already been initialized.', $filter->getName()));
260 return $filter->withDynamicArguments($name, $filter->getName(), $matches);
383 …sprintf('Unable to add test "%s" as extensions have already been initialized.', $test->getName()));
415 return $test->withDynamicArguments($name, $test->getName(), $matches);
469 $this->filters[$name = $filter->getName()] = $filter;
477 $this->functions[$name = $function->getName()] = $function;
485 $this->tests[$name = $test->getName()] = $test;
/template/strap/ComboStrap/
H A DLead.php38 static public function getName(): string function in ComboStrap\\Lead
55 return self::getName();
H A DMetadataFormDataStore.php37 $childrenValue = $this->data[$childrenObject::getName()];
51 $value = $this->data[$metadata::getName()] ?? null;
H A DResourceName.php65 static public function getName(): string function in ComboStrap\\ResourceName
116 return static::getName();
H A DPageUrlType.php51 $confCanonicalType = $this->getName();
80 static public function getName(): string function in ComboStrap\\PageUrlType
H A DPageTitle.php38 static public function getName(): string function in ComboStrap\\PageTitle
87 …dataCurrentAndPersistent[MetadataDokuWikiStore::PERSISTENT_DOKUWIKI_KEY][$this->getName()] ?? null;
/template/strap/action/
H A Dmetatitle.php52 if (!empty(Site::getName())) {
53 $pageTitle .= self::TITLE_SEPARATOR . Site::getName();
/template/strap/vendor/php-webdriver/webdriver/lib/Remote/Service/
H A DDriverCommandExecutor.php37 if ($command->getName() === DriverCommand::NEW_SESSION) {
43 if ($command->getName() === DriverCommand::QUIT) {
/template/twigstarter/vendor/twig/twig/src/Profiler/Dumper/
DHtmlDumper.php35 return self::escape($profile->getName());
45 …ofile->getType(), self::$colors[$profile->getType()] ?? 'auto', self::escape($profile->getName()));
/template/strap/ComboStrap/Meta/Api/
H A DMetadata.php289 return static::getName();
316 return $this->getName();
357 return static::getName();
395 return static::getName();
405 public static abstract function getName(): string; function in ComboStrap\\Meta\\Api\\Metadata
638 $attribute = $this->getName();
/template/twigstarter/vendor/twig/twig/src/Error/
DError.php125 if ($this->source && $this->source->getName()) {
126 $this->message .= \sprintf(' in "%s"', $this->source->getName());
144 …ace['object']) && $trace['object'] instanceof Template && $this->source->getName() === $trace['obj…
/template/strap/ComboStrap/Meta/Field/
H A DPageH1.php43 static public function getName(): string function in ComboStrap\\Meta\\Field\\PageH1
103 return static::getName();
/template/twigstarter/vendor/twig/twig/src/Node/Expression/
DTestExpression.php39 $name = $test->getName();
61 $name = $this->getAttribute('twig_callable')->getName();
DFunctionExpression.php30 $name = $function->getName();
65 $name = $this->getAttribute('twig_callable')->getName();
/template/strap/vendor/php-webdriver/webdriver/lib/Remote/
H A DHttpCommandExecutor.php294 if ($command->getName() === DriverCommand::NEW_SESSION) {
401 $commandName = $command->getName();
404 … throw new InvalidArgumentException($command->getName() . ' is not a valid command.');
409 $raw = self::$w3cCompliantCommands[$command->getName()];
411 $raw = self::$commands[$command->getName()];

123456