--TEST-- MongoDB\Driver\Cursor command result iteration through IteratorIterator --SKIPIF-- --FILE-- insert(array('_id' => 1, 'x' => 1)); $bulk->insert(array('_id' => 2, 'x' => 1)); $manager->executeBulkWrite(NS, $bulk); $command = new MongoDB\Driver\Command(array( 'aggregate' => COLLECTION_NAME, 'pipeline' => array( array('$match' => array('x' => 1)), ), 'cursor' => new stdClass, )); $cursor = $manager->executeCommand(DATABASE_NAME, $command); foreach (new IteratorIterator($cursor) as $document) { var_dump($document); } ?> ===DONE=== --EXPECTF-- object(stdClass)#%d (2) { ["_id"]=> int(1) ["x"]=> int(1) } object(stdClass)#%d (2) { ["_id"]=> int(2) ["x"]=> int(1) } ===DONE===