@@ -68,7 +68,9 @@ The output would then resemble:
68
68
Inserted 1 document(s)
69
69
int(1)
70
70
71
- .. seealso:: :phpmethod:`MongoDB\\Collection::insertOne()`
71
+ .. seealso::
72
+
73
+ :phpmethod:`MongoDB\\Collection::insertOne()`
72
74
73
75
Insert Many Documents
74
76
~~~~~~~~~~~~~~~~~~~~~
@@ -84,7 +86,9 @@ the inserted documents.
84
86
:start-after: start-crud-include
85
87
:end-before: end-crud-include
86
88
87
- .. seealso:: :phpmethod:`MongoDB\\Collection::insertMany()`
89
+ .. seealso::
90
+
91
+ :phpmethod:`MongoDB\\Collection::insertMany()`
88
92
89
93
Query Documents
90
94
---------------
@@ -153,7 +157,9 @@ The output would then resemble:
153
157
when matching an ``_id`` with an :manual:`ObjectId </reference/object-id/>`
154
158
value, as strings and ObjectIds are not directly comparable.
155
159
156
- .. seealso:: :phpmethod:`MongoDB\\Collection::findOne()`
160
+ .. seealso::
161
+
162
+ :phpmethod:`MongoDB\\Collection::findOne()`
157
163
158
164
.. _php-find-many-documents:
159
165
@@ -190,7 +196,9 @@ The output would resemble:
190
196
07307
191
197
07310
192
198
193
- .. seealso:: :phpmethod:`MongoDB\\Collection::find()`
199
+ .. seealso::
200
+
201
+ :phpmethod:`MongoDB\\Collection::find()`
194
202
195
203
.. _php-query-projection:
196
204
@@ -387,7 +395,9 @@ An equivalent filter could be constructed using the :query:`$regex` operator:
387
395
'state' => 'TX',
388
396
]
389
397
390
- .. seealso:: :manual:`$regex </reference/operator/query/regex>` in the MongoDB manual
398
+ .. seealso::
399
+
400
+ :manual:`$regex </reference/operator/query/regex>` in the MongoDB manual
391
401
392
402
Although MongoDB's regular expression syntax is not exactly the same as PHP's
393
403
:php:`PCRE <manual/en/book.pcre.php>` syntax, :php:`preg_quote() <preg_quote>`
@@ -446,7 +456,9 @@ The output would then resemble:
446
456
PA has 1458 zip codes
447
457
IL has 1237 zip codes
448
458
449
- .. seealso:: :phpmethod:`MongoDB\\Collection::aggregate()`
459
+ .. seealso::
460
+
461
+ :phpmethod:`MongoDB\\Collection::aggregate()`
450
462
451
463
Update Documents
452
464
----------------
@@ -574,7 +586,9 @@ operation therefore resembles:
574
586
Matched 3 document(s)
575
587
Modified 2 document(s)
576
588
577
- .. seealso:: :phpmethod:`MongoDB\\Collection::updateMany()`
589
+ .. seealso::
590
+
591
+ :phpmethod:`MongoDB\\Collection::updateMany()`
578
592
579
593
Replace Documents
580
594
~~~~~~~~~~~~~~~~~
@@ -737,7 +751,9 @@ The output would then resemble:
737
751
738
752
Deleted 1 document(s)
739
753
740
- .. seealso:: :phpmethod:`MongoDB\\Collection::deleteOne()`
754
+ .. seealso::
755
+
756
+ :phpmethod:`MongoDB\\Collection::deleteOne()`
741
757
742
758
Delete Many Documents
743
759
~~~~~~~~~~~~~~~~~~~~~
@@ -773,4 +789,6 @@ The output would then resemble:
773
789
774
790
Deleted 2 document(s)
775
791
776
- .. seealso:: :phpmethod:`MongoDB\\Collection::deleteMany()`
792
+ .. seealso::
793
+
794
+ :phpmethod:`MongoDB\\Collection::deleteMany()`
0 commit comments