Pinq\Caching\DirectoryCache::remove PHP Метод

remove() публичный Метод

public remove ( $key )
    public function remove($key)
    {
        $filePath = $this->getCacheFilePath($key);
        if (file_exists($filePath)) {
            unlink($filePath);
        }
    }