Skip to content

Commit

Permalink
add setId method to AbstractModel
Browse files Browse the repository at this point in the history
  • Loading branch information
Vaidas Bagdonas committed Jul 7, 2020
1 parent d374e90 commit f769250
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ public function getId()
return $this->id;
}

public function setId($id)
{
$this->id = $id;
}

/**
* @return User
*/
Expand Down

0 comments on commit f769250

Please sign in to comment.