Overrides LoaderInterface::getCacheKey
public function getCacheKey(string $name) : string { if (!isset($this->templates[$name])) { throw new LoaderError(\sprintf('Template "%s" is not defined.', $name)); } return $name . ':' . $this->templates[$name]; }