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

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

public remove ( $key )
    public function remove($key)
    {
        $fileData = $this->getFileData();
        if (!isset($fileData[$key])) {
            return;
        }
        unset($fileData[$key]);
        $this->flushFileData();
    }