Granada\ORM::is_dirty PHP Method

is_dirty() public method

Check whether the given field has been changed since this object was saved.
public is_dirty ( string $key )
$key string
    public function is_dirty($key)
    {
        return isset($this->_dirty_fields[$key]);
    }
ORM