gui\Application::__unset PHP Метод

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

Unset the object referency from the stack
public __unset ( $objectId ) : void
$objectId
Результат void
    public function __unset($objectId)
    {
        if ($this->getObject($objectId)) {
            unset($this->objects[$objectId]);
        }
    }