Granada\ORM::set PHP Method

set() public method

To set multiple properties at once, pass an associative array as the first parameter and leave out the second parameter. Flags the properties as 'dirty' so they will be saved to the database when save() is called.
public set ( $key, $value = null )
    public function set($key, $value = null)
    {
        return $this->_set_orm_property($key, $value);
    }
ORM