FluentDOM\Node\NonDocumentTypeChildNode\Properties::__get PHP Метод

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

public __get ( $name )
    public function __get($name)
    {
        switch ($name) {
            case 'nextElementSibling':
                return $this->getNextElementSibling();
            case 'previousElementSibling':
                return $this->getPreviousElementSibling();
        }
        return $this->getParentProperty($name);
    }
Properties