Overrides RemovableCacheInterface::remove
public function remove(string $name, string $cls) : void { $key = $this->generateKey($name, $cls); if (!@unlink($key) && file_exists($key)) { throw new \RuntimeException(\sprintf('Failed to delete cache file "%s".', $key)); } }