Pop\Feed\Format\AbstractFormat::__get PHP Méthode

__get() public méthode

Get method to return the value of feed[$name].
public __get ( string $name ) : mixed
$name string
Résultat mixed
    public function __get($name)
    {
        return isset($this->feed[$name]) ? $this->feed[$name] : null;
    }