Nette\Caching\Storages\FileStorage::remove PHP Method

remove() public method

Removes item from the cache.
public remove ( $key ) : void
return void
    public function remove($key)
    {
        unset($this->locks[$key]);
        $this->delete($this->getCacheFile($key));
    }