public function Twig_Cache_Filesystem::load in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/twig/twig/lib/Twig/Cache/Filesystem.php \Twig_Cache_Filesystem::load()
Loads a template from the cache.
Parameters
string $key The cache key:
Overrides Twig_CacheInterface::load
File
- vendor/
twig/ twig/ lib/ Twig/ Cache/ Filesystem.php, line 47
Class
- Twig_Cache_Filesystem
- Implements a cache on the filesystem.
Code
public function load($key) {
@(include_once $key);
}