Prado\Caching\TCache::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 ( $id ) : boolean
return boolean if no error happens during deletion
    public function offsetUnset($id)
    {
        $this->delete($id);
    }