cache = $cache; } /** * @inheritDoc */ public function fetch(string $id) { return $this->cache->fetch($id); } /** * @inheritDoc */ public function contains(string $id): bool { return $this->cache->contains($id); } /** * @inheritDoc */ public function save(string $id, $data, int $lifeTime = 0): bool { return $this->cache->save($id, $data, $lifeTime); } /** * @inheritDoc */ public function delete(string $id): bool { return $this->cache->delete($id); } /** * @inheritDoc */ public function flushAll(): bool { return $this->cache->flushAll(); } }