cache = $cache; $this->aclBuilder = $aclBuilder; $this->cacheTag = $cacheTag; } /** * {@inheritdoc} */ public function test($identifier) { return $this->cache->test($identifier); } /** * {@inheritdoc} */ public function load($identifier) { return $this->cache->load($identifier); } /** * {@inheritdoc} */ public function save($data, $identifier, array $tags = [], $lifeTime = null) { return $this->cache->save($data, $identifier, array_merge($tags, [$this->cacheTag]), $lifeTime); } /** * {@inheritdoc} */ public function remove($identifier) { return $this->cache->remove($identifier); } /** * {@inheritdoc} */ public function clean($mode = \Zend_Cache::CLEANING_MODE_MATCHING_TAG, array $tags = []) { $this->aclBuilder->resetRuntimeAcl(); return $this->cache->clean($mode, array_merge($tags, [$this->cacheTag])); } /** * {@inheritdoc} */ public function getBackend() { return $this->cache->getBackend(); } /** * {@inheritdoc} */ public function getLowLevelFrontend() { return $this->cache->getLowLevelFrontend(); } }