Completed
Pull Request — master (#1717)
by Maciej
12:25 queued 01:05
created
lib/Doctrine/ODM/MongoDB/Aggregation/Builder.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
      *
384 384
      * @see http://docs.mongodb.org/manual/reference/operator/aggregation/out/
385 385
      *
386
-     * @param string $collection
386
+     * @param string $from
387 387
      * @return Stage\Out
388 388
      */
389 389
     public function out($from)
@@ -549,7 +549,7 @@  discard block
 block discarded – undo
549 549
     }
550 550
 
551 551
     /**
552
-     * @param Cursor $cursor
552
+     * @param \Traversable $cursor
553 553
      *
554 554
      * @return Iterator
555 555
      */
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Aggregation/Expr.php 1 patch
Doc Comments   +1 added lines, -10 removed lines patch added patch discarded remove patch
@@ -107,7 +107,6 @@  discard block
 block discarded – undo
107 107
      * @see http://docs.mongodb.org/manual/reference/operator/aggregation/add/
108 108
      * @param mixed|self $expression1
109 109
      * @param mixed|self $expression2
110
-     * @param mixed|self $expression3,... Additional expressions
111 110
      * @return $this
112 111
      */
113 112
     public function add($expression1, $expression2 /* , $expression3, ... */)
@@ -296,7 +295,6 @@  discard block
 block discarded – undo
296 295
      * @see http://docs.mongodb.org/manual/reference/operator/aggregation/concat/
297 296
      * @param mixed|self $expression1
298 297
      * @param mixed|self $expression2
299
-     * @param mixed|self $expression3,... Additional expressions
300 298
      * @return $this
301 299
      */
302 300
     public function concat($expression1, $expression2 /* , $expression3, ... */)
@@ -313,7 +311,6 @@  discard block
 block discarded – undo
313 311
      * @see https://docs.mongodb.org/manual/reference/operator/aggregation/concatArrays/
314 312
      * @param mixed|self $array1
315 313
      * @param mixed|self $array2
316
-     * @param mixed|self $array3, ... Additional expressions
317 314
      * @return $this
318 315
      *
319 316
      * @since 1.3
@@ -1074,7 +1071,6 @@  discard block
 block discarded – undo
1074 1071
      * @see http://docs.mongodb.org/manual/reference/operator/aggregation/multiply/
1075 1072
      * @param mixed|self $expression1
1076 1073
      * @param mixed|self $expression2
1077
-     * @param mixed|self $expression3,... Additional expressions
1078 1074
      * @return $this
1079 1075
      */
1080 1076
     public function multiply($expression1, $expression2 /* , $expression3, ... */)
@@ -1151,7 +1147,7 @@  discard block
 block discarded – undo
1151 1147
      * @since 1.5
1152 1148
      * @param mixed|self $start An integer that specifies the start of the sequence. Can be any valid expression that resolves to an integer.
1153 1149
      * @param mixed|self $end An integer that specifies the exclusive upper limit of the sequence. Can be any valid expression that resolves to an integer.
1154
-     * @param mixed|self $step Optional. An integer that specifies the increment value. Can be any valid expression that resolves to a non-zero integer. Defaults to 1.
1150
+     * @param integer $step Optional. An integer that specifies the increment value. Can be any valid expression that resolves to a non-zero integer. Defaults to 1.
1155 1151
      * @return $this
1156 1152
      */
1157 1153
     public function range($start, $end, $step = 1)
@@ -1229,7 +1225,6 @@  discard block
 block discarded – undo
1229 1225
      * @see http://docs.mongodb.org/manual/reference/operator/aggregation/setEquals/
1230 1226
      * @param mixed|self $expression1
1231 1227
      * @param mixed|self $expression2
1232
-     * @param mixed|self $expression3,...   Additional sets
1233 1228
      * @return $this
1234 1229
      */
1235 1230
     public function setEquals($expression1, $expression2 /* , $expression3, ... */)
@@ -1246,7 +1241,6 @@  discard block
 block discarded – undo
1246 1241
      * @see http://docs.mongodb.org/manual/reference/operator/aggregation/setIntersection/
1247 1242
      * @param mixed|self $expression1
1248 1243
      * @param mixed|self $expression2
1249
-     * @param mixed|self $expression3,...   Additional sets
1250 1244
      * @return $this
1251 1245
      */
1252 1246
     public function setIntersection($expression1, $expression2 /* , $expression3, ... */)
@@ -1279,7 +1273,6 @@  discard block
 block discarded – undo
1279 1273
      * @see http://docs.mongodb.org/manual/reference/operator/aggregation/setUnion/
1280 1274
      * @param mixed|self $expression1
1281 1275
      * @param mixed|self $expression2
1282
-     * @param mixed|self $expression3,...   Additional sets
1283 1276
      * @return $this
1284 1277
      */
1285 1278
     public function setUnion($expression1, $expression2 /* , $expression3, ... */)
@@ -1363,7 +1356,6 @@  discard block
 block discarded – undo
1363 1356
      *
1364 1357
      * @see https://docs.mongodb.org/manual/reference/operator/aggregation/stdDevPop/
1365 1358
      * @param mixed|self $expression1
1366
-     * @param mixed|self $expression2,... Additional samples
1367 1359
      * @return $this
1368 1360
      *
1369 1361
      * @since 1.3
@@ -1382,7 +1374,6 @@  discard block
 block discarded – undo
1382 1374
      *
1383 1375
      * @see https://docs.mongodb.org/manual/reference/operator/aggregation/stdDevSamp/
1384 1376
      * @param mixed|self $expression1
1385
-     * @param mixed|self $expression2,... Additional samples
1386 1377
      * @return $this
1387 1378
      *
1388 1379
      * @since 1.3
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Aggregation/Stage/AbstractBucket.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -90,6 +90,9 @@
 block discarded – undo
90 90
      */
91 91
     abstract protected function getStageName();
92 92
 
93
+    /**
94
+     * @param Expr $expression
95
+     */
93 96
     private function convertExpression($expression)
94 97
     {
95 98
         if (is_array($expression)) {
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Aggregation/Stage/Match.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
      *
235 235
      * @see Expr::geoWithin()
236 236
      * @see http://docs.mongodb.org/manual/reference/operator/geoWithin/
237
-     * @param array|Geometry $geometry
237
+     * @param Geometry $geometry
238 238
      * @return $this
239 239
      */
240 240
     public function geoWithin(Geometry $geometry)
@@ -320,7 +320,6 @@  discard block
 block discarded – undo
320 320
      *
321 321
      * @see Expr::geoWithinPolygon()
322 322
      * @see http://docs.mongodb.org/manual/reference/operator/polygon/
323
-     * @param array $point,... Three or more point coordinate tuples
324 323
      * @return $this
325 324
      */
326 325
     public function geoWithinPolygon(/* array($x1, $y1), ... */)
@@ -493,7 +492,7 @@  discard block
 block discarded – undo
493 492
      * @see Expr::mod()
494 493
      * @see http://docs.mongodb.org/manual/reference/operator/mod/
495 494
      * @param float|integer $divisor
496
-     * @param float|integer $remainder
495
+     * @param integer $remainder
497 496
      * @return $this
498 497
      */
499 498
     public function mod($divisor, $remainder = 0)
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Aggregation/Stage/Operator.php 1 patch
Doc Comments   +2 added lines, -9 removed lines patch added patch discarded remove patch
@@ -93,7 +93,6 @@  discard block
 block discarded – undo
93 93
      * @see Expr::add
94 94
      * @param mixed|Expr $expression1
95 95
      * @param mixed|Expr $expression2
96
-     * @param mixed|Expr $expression3,... Additional expressions
97 96
      * @return $this
98 97
      */
99 98
     public function add($expression1, $expression2 /* , $expression3, ... */)
@@ -242,7 +241,6 @@  discard block
 block discarded – undo
242 241
      * @see Expr::concat
243 242
      * @param mixed|Expr $expression1
244 243
      * @param mixed|Expr $expression2
245
-     * @param mixed|Expr $expression3,... Additional expressions
246 244
      * @return $this
247 245
      */
248 246
     public function concat($expression1, $expression2 /* , $expression3, ... */)
@@ -262,7 +260,6 @@  discard block
 block discarded – undo
262 260
      * @see Expr::concatArrays
263 261
      * @param mixed|Expr $array1
264 262
      * @param mixed|Expr $array2
265
-     * @param mixed|Expr $array3, ... Additional expressions
266 263
      * @return $this
267 264
      *
268 265
      * @since 1.3
@@ -426,7 +423,7 @@  discard block
 block discarded – undo
426 423
      *
427 424
      * @see http://docs.mongodb.org/manual/meta/aggregation-quick-reference/#aggregation-expressions
428 425
      * @see Expr::expression
429
-     * @param mixed|Expr $value
426
+     * @param boolean $value
430 427
      * @return $this
431 428
      */
432 429
     public function expression($value)
@@ -974,7 +971,6 @@  discard block
 block discarded – undo
974 971
      * @see Expr::multiply
975 972
      * @param mixed|Expr $expression1
976 973
      * @param mixed|Expr $expression2
977
-     * @param mixed|Expr $expression3,... Additional expressions
978 974
      * @return $this
979 975
      */
980 976
     public function multiply($expression1, $expression2 /* , $expression3, ... */)
@@ -1050,7 +1046,7 @@  discard block
 block discarded – undo
1050 1046
      * @since 1.5
1051 1047
      * @param mixed|Expr $start An integer that specifies the start of the sequence. Can be any valid expression that resolves to an integer.
1052 1048
      * @param mixed|Expr $end An integer that specifies the exclusive upper limit of the sequence. Can be any valid expression that resolves to an integer.
1053
-     * @param mixed|Expr $step Optional. An integer that specifies the increment value. Can be any valid expression that resolves to a non-zero integer. Defaults to 1.
1049
+     * @param integer $step Optional. An integer that specifies the increment value. Can be any valid expression that resolves to a non-zero integer. Defaults to 1.
1054 1050
      * @return $this
1055 1051
      */
1056 1052
     public function range($start, $end, $step = 1)
@@ -1143,7 +1139,6 @@  discard block
 block discarded – undo
1143 1139
      * @see Expr::setEquals
1144 1140
      * @param mixed|Expr $expression1
1145 1141
      * @param mixed|Expr $expression2
1146
-     * @param mixed|Expr $expression3,...   Additional sets
1147 1142
      * @return $this
1148 1143
      */
1149 1144
     public function setEquals($expression1, $expression2 /* , $expression3, ... */)
@@ -1163,7 +1158,6 @@  discard block
 block discarded – undo
1163 1158
      * @see Expr::setIntersection
1164 1159
      * @param mixed|Expr $expression1
1165 1160
      * @param mixed|Expr $expression2
1166
-     * @param mixed|Expr $expression3,...   Additional sets
1167 1161
      * @return $this
1168 1162
      */
1169 1163
     public function setIntersection($expression1, $expression2 /* , $expression3, ... */)
@@ -1203,7 +1197,6 @@  discard block
 block discarded – undo
1203 1197
      * @see Expr::setUnion
1204 1198
      * @param mixed|Expr $expression1
1205 1199
      * @param mixed|Expr $expression2
1206
-     * @param mixed|Expr $expression3,...   Additional sets
1207 1200
      * @return $this
1208 1201
      */
1209 1202
     public function setUnion($expression1, $expression2 /* , $expression3, ... */)
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Aggregation/Stage/Project.php 1 patch
Doc Comments   -6 removed lines patch added patch discarded remove patch
@@ -47,7 +47,6 @@  discard block
 block discarded – undo
47 47
      * @see http://docs.mongodb.org/manual/reference/operator/aggregation/avg/
48 48
      * @see Expr::avg
49 49
      * @param mixed|Expr $expression1
50
-     * @param mixed|Expr $expression2, ... Additional expressions
51 50
      * @return $this
52 51
      *
53 52
      * @since 1.3
@@ -114,7 +113,6 @@  discard block
 block discarded – undo
114 113
      * @see http://docs.mongodb.org/manual/reference/operator/aggregation/max/
115 114
      * @see Expr::max
116 115
      * @param mixed|Expr $expression1
117
-     * @param mixed|Expr $expression2, ... Additional expressions
118 116
      * @return $this
119 117
      *
120 118
      * @since 1.3
@@ -133,7 +131,6 @@  discard block
 block discarded – undo
133 131
      * @see http://docs.mongodb.org/manual/reference/operator/aggregation/min/
134 132
      * @see Expr::min
135 133
      * @param mixed|Expr $expression1
136
-     * @param mixed|Expr $expression2, ... Additional expressions
137 134
      * @return $this
138 135
      *
139 136
      * @since 1.3
@@ -153,7 +150,6 @@  discard block
 block discarded – undo
153 150
      * @see https://docs.mongodb.org/manual/reference/operator/aggregation/stdDevPop/
154 151
      * @see Expr::stdDevPop
155 152
      * @param mixed|Expr $expression1
156
-     * @param mixed|Expr $expression2, ... Additional expressions
157 153
      * @return $this
158 154
      *
159 155
      * @since 1.3
@@ -173,7 +169,6 @@  discard block
 block discarded – undo
173 169
      * @see https://docs.mongodb.org/manual/reference/operator/aggregation/stdDevSamp/
174 170
      * @see Expr::stdDevSamp
175 171
      * @param mixed|Expr $expression1
176
-     * @param mixed|Expr $expression2, ... Additional expressions
177 172
      * @return $this
178 173
      *
179 174
      * @since 1.3
@@ -193,7 +188,6 @@  discard block
 block discarded – undo
193 188
      * @see http://docs.mongodb.org/manual/reference/operator/aggregation/sum/
194 189
      * @see Expr::sum
195 190
      * @param mixed|Expr $expression1
196
-     * @param mixed|Expr $expression2, ... Additional expressions
197 191
      * @return $this
198 192
      *
199 193
      * @since 1.3
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Query/Builder.php 1 patch
Doc Comments   +4 added lines, -6 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
      * Construct a Builder
112 112
      *
113 113
      * @param DocumentManager $dm
114
-     * @param string[]|string|null $documentName (optional) an array of document names, the document name, or none
114
+     * @param string|null $documentName (optional) an array of document names, the document name, or none
115 115
      */
116 116
     public function __construct(DocumentManager $dm, $documentName = null)
117 117
     {
@@ -723,7 +723,6 @@  discard block
 block discarded – undo
723 723
      *
724 724
      * @see Expr::geoWithinPolygon()
725 725
      * @see http://docs.mongodb.org/manual/reference/operator/polygon/
726
-     * @param array $point,... Three or more point coordinate tuples
727 726
      * @return $this
728 727
      */
729 728
     public function geoWithinPolygon(/* array($x1, $y1), ... */)
@@ -1115,7 +1114,7 @@  discard block
 block discarded – undo
1115 1114
      * @see Expr::mod()
1116 1115
      * @see http://docs.mongodb.org/manual/reference/operator/mod/
1117 1116
      * @param float|integer $divisor
1118
-     * @param float|integer $remainder
1117
+     * @param integer $remainder
1119 1118
      * @return $this
1120 1119
      */
1121 1120
     public function mod($divisor, $remainder = 0)
@@ -1293,7 +1292,7 @@  discard block
 block discarded – undo
1293 1292
      * If a custom callable is used, its signature should conform to the default
1294 1293
      * Closure defined in {@link ReferencePrimer::__construct()}.
1295 1294
      *
1296
-     * @param boolean|callable $primer
1295
+     * @param boolean $primer
1297 1296
      * @return $this
1298 1297
      * @throws \InvalidArgumentException If $primer is not boolean or callable
1299 1298
      */
@@ -1708,7 +1707,7 @@  discard block
 block discarded – undo
1708 1707
      * field name (key) and order (value) pairs.
1709 1708
      *
1710 1709
      * @param array|string $fieldName Field name or array of field/order pairs
1711
-     * @param int|string $order       Field order (if one field is specified)
1710
+     * @param integer $order       Field order (if one field is specified)
1712 1711
      * @return $this
1713 1712
      */
1714 1713
     public function sort($fieldName, $order = 1)
@@ -1921,7 +1920,6 @@  discard block
 block discarded – undo
1921 1920
      * @see Builder::geoWithinPolygon()
1922 1921
      * @see Expr::withinPolygon()
1923 1922
      * @see http://docs.mongodb.org/manual/reference/operator/polygon/
1924
-     * @param array $point,... Three or more point coordinate tuples
1925 1923
      * @return $this
1926 1924
      */
1927 1925
     public function withinPolygon(/* array($x1, $y1), array($x2, $y2), ... */)
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Query/Expr.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -605,7 +605,6 @@  discard block
 block discarded – undo
605 605
      *
606 606
      * @see Builder::geoWithinPolygon()
607 607
      * @see http://docs.mongodb.org/manual/reference/operator/polygon/
608
-     * @param array $point,... Three or more point coordinate tuples
609 608
      * @return $this
610 609
      * @throws \InvalidArgumentException if less than three points are given
611 610
      */
@@ -846,7 +845,7 @@  discard block
 block discarded – undo
846 845
      * @see Builder::mod()
847 846
      * @see http://docs.mongodb.org/manual/reference/operator/mod/
848 847
      * @param float|integer $divisor
849
-     * @param float|integer $remainder
848
+     * @param integer $remainder
850 849
      * @return $this
851 850
      */
852 851
     public function mod($divisor, $remainder = 0)
@@ -1499,7 +1498,6 @@  discard block
 block discarded – undo
1499 1498
      * @deprecated 1.1 MongoDB 2.4 deprecated $within in favor of $geoWithin
1500 1499
      * @see Expr::geoWithinPolygon()
1501 1500
      * @see http://docs.mongodb.org/manual/reference/operator/polygon/
1502
-     * @param array $point,... Three or more point coordinate tuples
1503 1501
      * @return $this
1504 1502
      * @throws \InvalidArgumentException if less than three points are given
1505 1503
      */
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Query/Query.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -383,7 +383,6 @@
 block discarded – undo
383 383
      * Returns an array containing the specified keys and their values from the
384 384
      * query array, provided they exist and are not null.
385 385
      *
386
-     * @param string $key,... One or more option keys to be read
387 386
      * @return array
388 387
      */
389 388
     private function getQueryOptions(/* $key, ... */)
Please login to merge, or discard this patch.