Granada\ORM::force_all_dirty PHP Method

force_all_dirty() public method

Force the ORM to flag all the fields in the $data array as "dirty" and therefore update them when save() is called.
public force_all_dirty ( )
    public function force_all_dirty()
    {
        $this->_dirty_fields = $this->_data;
        return $this;
    }
ORM