cache->get($key); return !!$response; } public function store(string $key, Response $response) : bool { return $this->cache->set($key, $response); } public function del(string $key) : void { $this->cache->delete($key); } public function clear() : void { $this->cache->clear(); } }