Home
last modified time | relevance | path

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

/template/twigstarter/vendor/twig/twig/src/
H A DEnvironment.php905 … if ($this->extensionSet->isInitialized() && !\array_key_exists($name, $this->getGlobals())) {
923 public function getGlobals() function in Twig\\Environment
927 … $this->resolvedGlobals = array_merge($this->extensionSet->getGlobals(), $this->globals);
933 return array_merge($this->extensionSet->getGlobals(), $this->globals);
947 foreach ($this->getGlobals() as $key => $value) {
H A DExtensionSet.php317 public function getGlobals(): array function in Twig\\ExtensionSet
329 $extGlobals = $extension->getGlobals();
/template/twigstarter/vendor/twig/twig/src/Extension/
H A DGlobalsInterface.php29 public function getGlobals(); function