You are here

public function Twig_Extension::getNodeVisitors in Translation template extractor 6.3

Same name and namespace in other branches
  1. 7.3 vendor/Twig/Extension.php \Twig_Extension::getNodeVisitors()

Returns the node visitor instances to add to the existing list.

Return value

Twig_NodeVisitorInterface[] An array of Twig_NodeVisitorInterface instances

Overrides Twig_ExtensionInterface::getNodeVisitors

4 methods override Twig_Extension::getNodeVisitors()
Twig_Extension_Escaper::getNodeVisitors in vendor/Twig/Extension/Escaper.php
Returns the node visitor instances to add to the existing list.
Twig_Extension_Optimizer::getNodeVisitors in vendor/Twig/Extension/Optimizer.php
Returns the node visitor instances to add to the existing list.
Twig_Extension_Sandbox::getNodeVisitors in vendor/Twig/Extension/Sandbox.php
Returns the node visitor instances to add to the existing list.
Twig_Extension_Staging::getNodeVisitors in vendor/Twig/Extension/Staging.php
Returns the node visitor instances to add to the existing list.

File

vendor/Twig/Extension.php, line 39

Class

Twig_Extension

Code

public function getNodeVisitors() {
  return array();
}