ActiveResource\ActiveResource::__get PHP Метод

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

Getter for internal object data.
public __get ( $k )
    public function __get($k)
    {
        if (isset($this->_data[$k])) {
            return $this->_data[$k];
        }
        return $this->{$k};
    }