public function Twig_Environment::isStrictVariables in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/twig/twig/lib/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/ twig/ lib/ Twig/ Environment.php, line 233
Class
- Twig_Environment
- Stores the Twig configuration.
Code
public function isStrictVariables() {
return $this->strictVariables;
}