You are here

public function Twig_Cache_Filesystem::load in Translation template extractor 7.3

Loads a template from the cache.

Parameters

string $key The cache key:

Overrides Twig_CacheInterface::load

File

vendor/Twig/Cache/Filesystem.php, line 47

Class

Twig_Cache_Filesystem
Implements a cache on the filesystem.

Code

public function load($key) {
  @(include_once $key);
}