BrowscapPHP\Cache\BrowscapCache::removeItem PHP Method

removeItem() public method

Remove an item.
public removeItem ( string $cacheId, boolean $withVersion = true ) : boolean
$cacheId string
$withVersion boolean
return boolean
    public function removeItem($cacheId, $withVersion = true)
    {
        if ($withVersion) {
            $cacheId .= '.' . $this->getVersion();
        }
        return $this->cache->removeItem($cacheId);
    }