cache->fetch($uri); if (null !== $publicSuffixList) { return $publicSuffixList; } $publicSuffixList = $this->client->get($uri); $this->cache->remember($uri, $publicSuffixList); return $publicSuffixList; } public function delete(string $uri): bool { return $this->cache->forget($uri); } }