public function Twig_Loader_Array::getCacheKey in Translation template extractor 6.3
Same name and namespace in other branches
- 7.3 vendor/Twig/Loader/Array.php \Twig_Loader_Array::getCacheKey()
Gets the cache key to use for the cache for a given template name.
Parameters
string $name The name of the template to load:
Return value
string The cache key
Throws
Twig_Error_Loader When $name is not found
Overrides Twig_LoaderInterface::getCacheKey
File
- vendor/
Twig/ Loader/ Array.php, line 75
Class
- Twig_Loader_Array
- Loads a template from an array.
Code
public function getCacheKey($name) {
$name = (string) $name;
if (!isset($this->templates[$name])) {
throw new Twig_Error_Loader(sprintf('Template "%s" is not defined.', $name));
}
return $this->templates[$name];
}