public function Twig_Environment::clearTemplateCache in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/twig/twig/lib/Twig/Environment.php \Twig_Environment::clearTemplateCache()
Clears the internal template cache.
Deprecated
since 1.18.3 (to be removed in 2.0)
File
- vendor/
twig/ twig/ lib/ Twig/ Environment.php, line 516
Class
- Twig_Environment
- Stores the Twig configuration.
Code
public function clearTemplateCache() {
@trigger_error(sprintf('The %s method is deprecated and will be removed in Twig 2.0.', __METHOD__), E_USER_DEPRECATED);
$this->loadedTemplates = array();
}