@@ -183,7 +183,7 @@ public function __debugInfo()
183
183
/**
184
184
* Return the collection namespace (e.g. "db.collection").
185
185
*
186
- * @see https://docs. mongodb.org/ manual/faq/developers/#faq-dev-namespace
186
+ * @see https://mongodb.com/docs/ manual/core/databases-and-collections/
187
187
* @return string
188
188
*/
189
189
public function __toString ()
@@ -368,8 +368,8 @@ public function createIndex($key, array $options = [])
368
368
* If the "name" option is unspecified, a name will be generated from the
369
369
* "key" document.
370
370
*
371
- * @see http://docs. mongodb.org /manual/reference/command/createIndexes/
372
- * @see http://docs. mongodb.org /manual/reference/method/db.collection.createIndex/
371
+ * @see http://mongodb.com/docs /manual/reference/command/createIndexes/
372
+ * @see http://mongodb.com/docs /manual/reference/method/db.collection.createIndex/
373
373
* @see CreateIndexes::__construct() for supported command options
374
374
* @param array[] $indexes List of index specifications
375
375
* @param array $options Command options
@@ -395,7 +395,7 @@ public function createIndexes(array $indexes, array $options = [])
395
395
* Deletes all documents matching the filter.
396
396
*
397
397
* @see DeleteMany::__construct() for supported options
398
- * @see http://docs. mongodb.org /manual/reference/command/delete/
398
+ * @see http://mongodb.com/docs /manual/reference/command/delete/
399
399
* @param array|object $filter Query by which to delete documents
400
400
* @param array $options Command options
401
401
* @return DeleteResult
@@ -419,7 +419,7 @@ public function deleteMany($filter, array $options = [])
419
419
* Deletes at most one document matching the filter.
420
420
*
421
421
* @see DeleteOne::__construct() for supported options
422
- * @see http://docs. mongodb.org /manual/reference/command/delete/
422
+ * @see http://mongodb.com/docs /manual/reference/command/delete/
423
423
* @param array|object $filter Query by which to delete documents
424
424
* @param array $options Command options
425
425
* @return DeleteResult
@@ -593,7 +593,7 @@ public function estimatedDocumentCount(array $options = [])
593
593
* Explains explainable commands.
594
594
*
595
595
* @see Explain::__construct() for supported options
596
- * @see http://docs. mongodb.org /manual/reference/command/explain/
596
+ * @see http://mongodb.com/docs /manual/reference/command/explain/
597
597
* @param Explainable $explainable Command on which to run explain
598
598
* @param array $options Additional options
599
599
* @return array|object
@@ -622,7 +622,7 @@ public function explain(Explainable $explainable, array $options = [])
622
622
* Finds documents matching the query.
623
623
*
624
624
* @see Find::__construct() for supported options
625
- * @see http ://docs. mongodb.org/ manual/core/ read-operations-introduction/
625
+ * @see https ://mongodb.com/docs/ manual/crud/# read-operations
626
626
* @param array|object $filter Query by which to filter documents
627
627
* @param array $options Additional options
628
628
* @return Cursor
@@ -655,7 +655,7 @@ public function find($filter = [], array $options = [])
655
655
* Finds a single document matching the query.
656
656
*
657
657
* @see FindOne::__construct() for supported options
658
- * @see http ://docs. mongodb.org/ manual/core/ read-operations-introduction/
658
+ * @see https ://mongodb.com/docs/ manual/crud/# read-operations
659
659
* @param array|object $filter Query by which to filter documents
660
660
* @param array $options Additional options
661
661
* @return array|object|null
@@ -690,7 +690,7 @@ public function findOne($filter = [], array $options = [])
690
690
* The document to return may be null if no document matched the filter.
691
691
*
692
692
* @see FindOneAndDelete::__construct() for supported options
693
- * @see http://docs. mongodb.org /manual/reference/command/findAndModify/
693
+ * @see http://mongodb.com/docs /manual/reference/command/findAndModify/
694
694
* @param array|object $filter Query by which to filter documents
695
695
* @param array $options Command options
696
696
* @return array|object|null
@@ -726,7 +726,7 @@ public function findOneAndDelete($filter, array $options = [])
726
726
* to return the updated document.
727
727
*
728
728
* @see FindOneAndReplace::__construct() for supported options
729
- * @see http://docs. mongodb.org /manual/reference/command/findAndModify/
729
+ * @see http://mongodb.com/docs /manual/reference/command/findAndModify/
730
730
* @param array|object $filter Query by which to filter documents
731
731
* @param array|object $replacement Replacement document
732
732
* @param array $options Command options
@@ -763,7 +763,7 @@ public function findOneAndReplace($filter, $replacement, array $options = [])
763
763
* to return the updated document.
764
764
*
765
765
* @see FindOneAndReplace::__construct() for supported options
766
- * @see http://docs. mongodb.org /manual/reference/command/findAndModify/
766
+ * @see http://mongodb.com/docs /manual/reference/command/findAndModify/
767
767
* @param array|object $filter Query by which to filter documents
768
768
* @param array|object $update Update to apply to the matched document
769
769
* @param array $options Command options
@@ -823,7 +823,7 @@ public function getManager()
823
823
/**
824
824
* Return the collection namespace.
825
825
*
826
- * @see https://docs. mongodb.org /manual/reference/glossary/#term-namespace
826
+ * @see https://mongodb.com/docs /manual/reference/glossary/#term-namespace
827
827
* @return string
828
828
*/
829
829
public function getNamespace ()
@@ -877,7 +877,7 @@ public function getWriteConcern()
877
877
* Inserts multiple documents.
878
878
*
879
879
* @see InsertMany::__construct() for supported options
880
- * @see http://docs. mongodb.org /manual/reference/command/insert/
880
+ * @see http://mongodb.com/docs /manual/reference/command/insert/
881
881
* @param array[]|object[] $documents The documents to insert
882
882
* @param array $options Command options
883
883
* @return InsertManyResult
@@ -900,7 +900,7 @@ public function insertMany(array $documents, array $options = [])
900
900
* Inserts one document.
901
901
*
902
902
* @see InsertOne::__construct() for supported options
903
- * @see http://docs. mongodb.org /manual/reference/command/insert/
903
+ * @see http://mongodb.com/docs /manual/reference/command/insert/
904
904
* @param array|object $document The document to insert
905
905
* @param array $options Command options
906
906
* @return InsertOneResult
@@ -940,7 +940,7 @@ public function listIndexes(array $options = [])
940
940
* Executes a map-reduce aggregation on the collection.
941
941
*
942
942
* @see MapReduce::__construct() for supported options
943
- * @see http://docs. mongodb.org /manual/reference/command/mapReduce/
943
+ * @see http://mongodb.com/docs /manual/reference/command/mapReduce/
944
944
* @param JavascriptInterface $map Map function
945
945
* @param JavascriptInterface $reduce Reduce function
946
946
* @param string|array|object $out Output specification
@@ -1025,7 +1025,7 @@ public function rename(string $toCollectionName, ?string $toDatabaseName = null,
1025
1025
* Replaces at most one document matching the filter.
1026
1026
*
1027
1027
* @see ReplaceOne::__construct() for supported options
1028
- * @see http://docs. mongodb.org /manual/reference/command/update/
1028
+ * @see http://mongodb.com/docs /manual/reference/command/update/
1029
1029
* @param array|object $filter Query by which to filter documents
1030
1030
* @param array|object $replacement Replacement document
1031
1031
* @param array $options Command options
@@ -1050,7 +1050,7 @@ public function replaceOne($filter, $replacement, array $options = [])
1050
1050
* Updates all documents matching the filter.
1051
1051
*
1052
1052
* @see UpdateMany::__construct() for supported options
1053
- * @see http://docs. mongodb.org /manual/reference/command/update/
1053
+ * @see http://mongodb.com/docs /manual/reference/command/update/
1054
1054
* @param array|object $filter Query by which to filter documents
1055
1055
* @param array|object $update Update to apply to the matched documents
1056
1056
* @param array $options Command options
@@ -1075,7 +1075,7 @@ public function updateMany($filter, $update, array $options = [])
1075
1075
* Updates at most one document matching the filter.
1076
1076
*
1077
1077
* @see UpdateOne::__construct() for supported options
1078
- * @see http://docs. mongodb.org /manual/reference/command/update/
1078
+ * @see http://mongodb.com/docs /manual/reference/command/update/
1079
1079
* @param array|object $filter Query by which to filter documents
1080
1080
* @param array|object $update Update to apply to the matched document
1081
1081
* @param array $options Command options
0 commit comments