| /template/twigstarter/vendor/twig/twig/src/Extension/ |
| D | StagingExtension.php | 37 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;
|
| D | AttributeExtension.php | 94 … $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/ |
| D | CallableArgumentsExtractor.php | 50 …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/ |
| D | AbstractExpressionParser.php | 18 return \sprintf('%s(%s)', ExpressionParserType::getType($this)->value, $this->getName()); 33 return [$this->getName(), ...$this->getAliases()];
|
| /template/strap/ComboStrap/Meta/Form/ |
| H A D | FormMeta.php | 76 $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/ |
| D | TemplateVariable.php | 19 public function getName(Compiler $compiler): string function in Twig\\Node\\Expression\\Variable\\TemplateVariable 30 $name = $this->getName($compiler);
|
| D | AssignTemplateVariable.php | 32 ->string($var->getName($compiler)) 39 ->string($var->getName($compiler))
|
| /template/twigstarter/vendor/twig/twig/src/ExpressionParser/Infix/ |
| D | IsExpressionParser.php | 49 …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
|
| D | AssignmentExpressionParser.php | 46 $right = match ($this->getName()) { 48 … default => throw new \LogicException(\sprintf('Unknown operator: %s.', $this->getName())),
|
| D | FilterExpressionParser.php | 58 …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/ |
| D | ExtensionSet.php | 172 …'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 D | Lead.php | 38 static public function getName(): string function in ComboStrap\\Lead 55 return self::getName();
|
| H A D | MetadataFormDataStore.php | 37 $childrenValue = $this->data[$childrenObject::getName()]; 51 $value = $this->data[$metadata::getName()] ?? null;
|
| H A D | ResourceName.php | 65 static public function getName(): string function in ComboStrap\\ResourceName 116 return static::getName();
|
| H A D | PageUrlType.php | 51 $confCanonicalType = $this->getName(); 80 static public function getName(): string function in ComboStrap\\PageUrlType
|
| H A D | PageTitle.php | 38 static public function getName(): string function in ComboStrap\\PageTitle 87 …dataCurrentAndPersistent[MetadataDokuWikiStore::PERSISTENT_DOKUWIKI_KEY][$this->getName()] ?? null;
|
| /template/strap/action/ |
| H A D | metatitle.php | 52 if (!empty(Site::getName())) { 53 $pageTitle .= self::TITLE_SEPARATOR . Site::getName();
|
| /template/strap/vendor/php-webdriver/webdriver/lib/Remote/Service/ |
| H A D | DriverCommandExecutor.php | 37 if ($command->getName() === DriverCommand::NEW_SESSION) { 43 if ($command->getName() === DriverCommand::QUIT) {
|
| /template/twigstarter/vendor/twig/twig/src/Profiler/Dumper/ |
| D | HtmlDumper.php | 35 return self::escape($profile->getName()); 45 …ofile->getType(), self::$colors[$profile->getType()] ?? 'auto', self::escape($profile->getName()));
|
| /template/strap/ComboStrap/Meta/Api/ |
| H A D | Metadata.php | 289 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/ |
| D | Error.php | 125 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 D | PageH1.php | 43 static public function getName(): string function in ComboStrap\\Meta\\Field\\PageH1 103 return static::getName();
|
| /template/twigstarter/vendor/twig/twig/src/Node/Expression/ |
| D | TestExpression.php | 39 $name = $test->getName(); 61 $name = $this->getAttribute('twig_callable')->getName();
|
| D | FunctionExpression.php | 30 $name = $function->getName(); 65 $name = $this->getAttribute('twig_callable')->getName();
|
| /template/strap/vendor/php-webdriver/webdriver/lib/Remote/ |
| H A D | HttpCommandExecutor.php | 294 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()];
|