Pop\Feed\Format\AbstractFormat::__set PHP 메소드

__set() 공개 메소드

Set method to set the property to the value of feed[$name].
public __set ( string $name, mixed $value ) : void
$name string
$value mixed
리턴 void
    public function __set($name, $value)
    {
        $this->feed[$name] = $value;
    }