Skip to content

Commit

Permalink
Merge pull request #12 from super-dm3/master
Browse files Browse the repository at this point in the history
Fix setId() with BSON/ObjectId argument
  • Loading branch information
Jeckerson authored Aug 5, 2024
2 parents 3a3b65e + b000421 commit 4b07166
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Mvc/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,8 @@ public function setId($id): void
} else {
$this->_id = $id;
}
} else {
$this->_id = $id;
}
}

Expand Down

0 comments on commit 4b07166

Please sign in to comment.