Removes a value from the cache.
string $key A unique key:
Overrides CacheInterface::remove
public function remove($key) {
$path = $this->dir . '/' . $key;
if (file_exists($path) && false === @unlink($path)) {
throw new \RuntimeException('Unable to remove file ' . $path);
}
}