Pop\Feed\Format\AbstractFormat::__get PHP Метод

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

Get method to return the value of feed[$name].
public __get ( string $name ) : mixed
$name string
Результат mixed
    public function __get($name)
    {
        return isset($this->feed[$name]) ? $this->feed[$name] : null;
    }