FOF30\Pimple\Container::offsetUnset PHP Метод

offsetUnset() публичный Метод

Unsets a parameter or an object.
public offsetUnset ( string $id )
$id string The unique identifier for the parameter or object
    public function offsetUnset($id)
    {
        if (isset($this->keys[$id])) {
            if (is_object($this->values[$id])) {
                unset($this->factories[$this->values[$id]], $this->protected[$this->values[$id]]);
            }
            unset($this->values[$id], $this->frozen[$id], $this->raw[$id], $this->keys[$id]);
        }
    }