wp-orm
wp-orm copied to clipboard
BaseModel.php / function save() : unrelated return property
// BaseModel.php
public function save() {
...
return $this->id;
}
Why do you return a raw "id" property ? You should return $this->{static::get_primary_key()}
at least in the Insert case.