gui\Application::__unset PHP Method

__unset() public method

Unset the object referency from the stack
public __unset ( $objectId ) : void
$objectId
return void
    public function __unset($objectId)
    {
        if ($this->getObject($objectId)) {
            unset($this->objects[$objectId]);
        }
    }