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];
    }