yii\caching\Cache::offsetUnset PHP Method

offsetUnset() public method

Deletes the value with the specified key from cache This method is required by the interface [[\ArrayAccess]].
public offsetUnset ( string $key )
$key string the key of the value to be deleted
    public function offsetUnset($key)
    {
        $this->delete($key);
    }