Gets the current cache implementation.
bool $original Whether to return the original cache option or the real cache instance:
CacheInterface|string|false A Twig\Cache\CacheInterface implementation, an absolute path to the compiled templates, or false to disable cache
public function getCache($original = true) { return $original ? $this->originalCache : $this->cache; }