Granada\ORM::get PHP Method

get() public method

Return the value of a property of this object (database row) or null if not present.
public get ( $key )
    public function get($key)
    {
        return isset($this->_data[$key]) ? $this->_data[$key] : null;
    }
ORM