Hive_Container::offsetUnset PHP Méthode

offsetUnset() public méthode

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