Skip to content

Commit

Permalink
QA: Link to MongoDB documentation, add references to Collection
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Dec 30, 2023
1 parent 30865fe commit 5557139
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/main/php/com/mongodb/result/Modification.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@

use com\mongodb\Document;

/** @test com.mongodb.unittest.result.ModificationTest */
/**
* The result of a `findAndModify` operation
*
* @see com.mongodb.Collection::modify
* @see com.mongodb.Collection::remove
* @see https://www.mongodb.com/docs/manual/reference/command/findAndModify/
* @test com.mongodb.unittest.result.ModificationTest
*/
class Modification extends Result {
const REMOVED= 'removed';
const CREATED= 'created';
Expand Down

0 comments on commit 5557139

Please sign in to comment.