Hive_Container::offsetUnset PHP Method

offsetUnset() public method

unset($container['foo']);
public offsetUnset ( $key ) : void
return void
    public function offsetUnset($key)
    {
        if (isset($this[$key])) {
            $this->__removed[$key] = $this[$key];
        }
        return parent::offsetUnset($key);
    }