FluentDOM\Nodes\Creator\Node::__get PHP Метод

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

public __get ( string $name ) : mixed
$name string
Результат mixed
    public function __get($name)
    {
        switch ($name) {
            case 'dom':
            case 'document':
                return $this->getDocument();
            case 'node':
                return $this->_node;
        }
        return NULL;
    }