Jyxo\HtmlTag::__get PHP Метод

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

Returns an attribute value.
public __get ( string $name ) : mixed
$name string Attribute name
Результат mixed string|null
    public function __get(string $name)
    {
        // An empty attribute is always null
        return isset($this->attributes[$name]) ? $this->attributes[$name] : null;
    }