public function Twig_Extension::getFunctions in Translation template extractor 6.3
Same name and namespace in other branches
- 7.3 vendor/Twig/Extension.php \Twig_Extension::getFunctions()
Returns a list of functions to add to the existing list.
Return value
array An array of functions
Overrides Twig_ExtensionInterface::getFunctions
4 methods override Twig_Extension::getFunctions()
- Twig_Extension_Core::getFunctions in vendor/
Twig/ Extension/ Core.php - Returns a list of global functions to add to the existing list.
- Twig_Extension_Debug::getFunctions in vendor/
Twig/ Extension/ Debug.php - Returns a list of global functions to add to the existing list.
- Twig_Extension_Staging::getFunctions in vendor/
Twig/ Extension/ Staging.php - Returns a list of functions to add to the existing list.
- Twig_Extension_StringLoader::getFunctions in vendor/
Twig/ Extension/ StringLoader.php - Returns a list of functions to add to the existing list.
File
- vendor/
Twig/ Extension.php, line 69
Class
Code
public function getFunctions() {
return array();
}