Robbo\Presenter\Presenter::__unset PHP Method

__unset() public method

Allow to unset a variable through the presenter
public __unset ( string $name )
$name string
    public function __unset($name)
    {
        if (is_array($this->object)) {
            unset($this->object[$name]);
            return;
        }
        unset($this->object->{$name});
    }