PHPDaemon\Cache\CappedStorage::invalidate PHP Method

invalidate() public method

Invalidates cache element
public invalidate ( string $key ) : void
$key string Key
return void
    public function invalidate($key)
    {
        $k = $this->hash($key);
        unset($this->cache[$k]);
    }