Tale\Jade\Parser\Node::__get PHP 메소드

__get() 공개 메소드

Redirects to the $_data storage and returns a reference to that value
public __get ( string $key ) : mixed
$key string the name of the property that is read
리턴 mixed a reference to the value of the property
    public function &__get($key)
    {
        return $this->data[$key];
    }