public TwigPhpStorageCache::__construct(CacheBackendInterface $cache, $twig_extension_hash)
Store cache backend and other information internally.
Parameters
\Drupal\Core\Cache\CacheBackendInterface $cache: The cache bin.
string $twig_extension_hash: The Twig extension hash.
File
- core/lib/Drupal/Core/Template/TwigPhpStorageCache.php, line 49
Class
- TwigPhpStorageCache
- Provides an alternate cache storage for Twig using PhpStorage.
Namespace
Drupal\Core\Template
Code
public function __construct(CacheBackendInterface $cache, $twig_extension_hash) { $this->cache = $cache; $this->templateCacheFilenamePrefix = $twig_extension_hash; }
Please login to continue.