public function Twig_Environment::isAutoReload in Translation template extractor 6.3
Same name and namespace in other branches
- 7.3 vendor/Twig/Environment.php \Twig_Environment::isAutoReload()
Checks if the auto_reload option is enabled.
Return value
bool true if auto_reload is enabled, false otherwise
1 call to Twig_Environment::isAutoReload()
- Twig_Environment::loadTemplate in vendor/
Twig/ Environment.php - Loads a template by name.
File
- vendor/
Twig/ Environment.php, line 185
Class
- Twig_Environment
- Stores the Twig configuration.
Code
public function isAutoReload() {
return $this->autoReload;
}