Home
last modified time | relevance | path

Searched refs:getGlobals (Results 1 – 5 of 5) sorted by relevance

/template/twigstarter/vendor/twig/twig/src/
DTemplateWrapper.php79 return $this->template->renderBlock($name, $context + $this->env->getGlobals());
87 $context += $this->env->getGlobals();
DEnvironment.php890 … if ($this->extensionSet->isInitialized() && !\array_key_exists($name, $this->getGlobals())) {
904 public function getGlobals(): array function in Twig\\Environment
908 … $this->resolvedGlobals = array_merge($this->extensionSet->getGlobals(), $this->globals);
914 return array_merge($this->extensionSet->getGlobals(), $this->globals);
930 return $context + $this->getGlobals();
DExtensionSet.php353 public function getGlobals(): array function in Twig\\ExtensionSet
365 $globals = array_merge($globals, $extension->getGlobals());
DTemplate.php406 $context += $this->env->getGlobals();
/template/twigstarter/vendor/twig/twig/src/Extension/
DGlobalsInterface.php24 public function getGlobals(): array; function