public function Twig_Environment::isStrictVariables in Translation template extractor 6.3
Same name and namespace in other branches
- 7.3 vendor/Twig/Environment.php \Twig_Environment::isStrictVariables()
Checks if the strict_variables option is enabled.
Return value
bool true if strict_variables is enabled, false otherwise
File
- vendor/
Twig/ Environment.php, line 211
Class
- Twig_Environment
- Stores the Twig configuration.
Code
public function isStrictVariables() {
return $this->strictVariables;
}