-
Type:
Bug
-
Resolution: Cannot Reproduce
-
Priority:
Unknown
-
None
-
Affects Version/s: 1.20.0
-
Component/s: None
-
None
-
PHP Drivers
-
None
-
None
-
None
-
None
-
None
-
None
When following the example for monitoring a change stream in the documentation at MongoDB\Collection::watch() - PHP Library Manual v1.20, the call to `rewind()` and `next()` in the for loop causes the following exception to be thrown:
MongoDB\Driver\Cursor::getId() expects exactly 0 arguments, 1 given : {"exception":"[object] (ArgumentCountError(code: 0): MongoDB\\Driver\\Cursor::getId() expects exactly 0 arguments, 1 given at /<repo_path...>/vendor/mongodb/mongodb/src/ChangeStream.php:132)"}
Code snippet:
$uri = 'mongodb://rs1.example.com,rs2.example.com/?replicaSet=myReplicaSet'; $collection = (new MongoDB\Client($uri))->test->inventory; $changeStream = $collection->watch(); for ($changeStream->rewind(); true; $changeStream->next()) { if ( ! $changeStream->valid()) { continue; } $event = $changeStream->current(); }
The call stack for the call to `next()`
MongoDB\ChangeStream->getCursorId | ChangeStream.php 132:1 |
MongoDB\ChangeStream->onIteration | ChangeStream.php 264:1 |
MongoDB\ChangeStream->next | ChangeStream.php 173:1 |