DirkGroenen\Pinterest\Models\Model::__get PHP Method

__get() public method

Get the model's attribute
public __get ( string $key ) : mixed
$key string
return mixed
    public function __get($key)
    {
        return isset($this->attributes[$key]) ? $this->attributes[$key] : null;
    }