@@ -234,7 +234,7 @@ discard block |
||
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 |
||
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 |
||
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) |
@@ -93,7 +93,6 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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, ... */) |
@@ -47,7 +47,6 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
@@ -383,7 +383,6 @@ |
||
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, ... */) |
@@ -443,7 +443,7 @@ discard block |
||
443 | 443 | * the unique index. Additionally, the background option is only |
444 | 444 | * relevant to index creation and is not considered. |
445 | 445 | * |
446 | - * @param array|IndexInfo $mongoIndex Mongo index data. |
|
446 | + * @param IndexInfo $mongoIndex Mongo index data. |
|
447 | 447 | * @param array $documentIndex Document index data. |
448 | 448 | * @return bool True if the indexes are equivalent, otherwise false. |
449 | 449 | */ |
@@ -589,9 +589,9 @@ discard block |
||
589 | 589 | } |
590 | 590 | |
591 | 591 | /** |
592 | - * @param $documentName |
|
592 | + * @param string $documentName |
|
593 | 593 | * |
594 | - * @return array |
|
594 | + * @return string |
|
595 | 595 | */ |
596 | 596 | private function runShardCollectionCommand($documentName) |
597 | 597 | { |
@@ -325,6 +325,9 @@ discard block |
||
325 | 325 | return Type::convertPHPToDatabaseValue(Expr::convertExpression($expression)); |
326 | 326 | } |
327 | 327 | |
328 | + /** |
|
329 | + * @param string $fieldName |
|
330 | + */ |
|
328 | 331 | private function convertTargetFieldName($fieldName) |
329 | 332 | { |
330 | 333 | if (is_array($fieldName)) { |
@@ -347,6 +350,9 @@ discard block |
||
347 | 350 | return $this->dm->getUnitOfWork()->getDocumentPersister($class->name); |
348 | 351 | } |
349 | 352 | |
353 | + /** |
|
354 | + * @param string $fieldName |
|
355 | + */ |
|
350 | 356 | private function getReferencedFieldName($fieldName, array $mapping) |
351 | 357 | { |
352 | 358 | if ( ! $mapping['isOwningSide']) { |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | * Construct a Builder |
95 | 95 | * |
96 | 96 | * @param DocumentManager $dm |
97 | - * @param string[]|string|null $documentName (optional) an array of document names, the document name, or none |
|
97 | + * @param string|null $documentName (optional) an array of document names, the document name, or none |
|
98 | 98 | */ |
99 | 99 | public function __construct(DocumentManager $dm, $documentName = null) |
100 | 100 | { |
@@ -685,7 +685,6 @@ discard block |
||
685 | 685 | * |
686 | 686 | * @see Expr::geoWithinPolygon() |
687 | 687 | * @see http://docs.mongodb.org/manual/reference/operator/polygon/ |
688 | - * @param array $point,... Three or more point coordinate tuples |
|
689 | 688 | * @return $this |
690 | 689 | */ |
691 | 690 | public function geoWithinPolygon(/* array($x1, $y1), ... */) |
@@ -1077,7 +1076,7 @@ discard block |
||
1077 | 1076 | * @see Expr::mod() |
1078 | 1077 | * @see http://docs.mongodb.org/manual/reference/operator/mod/ |
1079 | 1078 | * @param float|integer $divisor |
1080 | - * @param float|integer $remainder |
|
1079 | + * @param integer $remainder |
|
1081 | 1080 | * @return $this |
1082 | 1081 | */ |
1083 | 1082 | public function mod($divisor, $remainder = 0) |
@@ -1241,7 +1240,7 @@ discard block |
||
1241 | 1240 | * If a custom callable is used, its signature should conform to the default |
1242 | 1241 | * Closure defined in {@link ReferencePrimer::__construct()}. |
1243 | 1242 | * |
1244 | - * @param boolean|callable $primer |
|
1243 | + * @param boolean $primer |
|
1245 | 1244 | * @return $this |
1246 | 1245 | * @throws \InvalidArgumentException If $primer is not boolean or callable |
1247 | 1246 | */ |
@@ -1635,7 +1634,7 @@ discard block |
||
1635 | 1634 | * field name (key) and order (value) pairs. |
1636 | 1635 | * |
1637 | 1636 | * @param array|string $fieldName Field name or array of field/order pairs |
1638 | - * @param int|string $order Field order (if one field is specified) |
|
1637 | + * @param integer $order Field order (if one field is specified) |
|
1639 | 1638 | * @return $this |
1640 | 1639 | */ |
1641 | 1640 | public function sort($fieldName, $order = 1) |
@@ -566,7 +566,6 @@ discard block |
||
566 | 566 | * |
567 | 567 | * @see Builder::geoWithinPolygon() |
568 | 568 | * @see http://docs.mongodb.org/manual/reference/operator/polygon/ |
569 | - * @param array $point,... Three or more point coordinate tuples |
|
570 | 569 | * @return $this |
571 | 570 | * @throws \InvalidArgumentException if less than three points are given |
572 | 571 | */ |
@@ -802,7 +801,7 @@ discard block |
||
802 | 801 | * @see Builder::mod() |
803 | 802 | * @see http://docs.mongodb.org/manual/reference/operator/mod/ |
804 | 803 | * @param float|integer $divisor |
805 | - * @param float|integer $remainder |
|
804 | + * @param integer $remainder |
|
806 | 805 | * @return $this |
807 | 806 | */ |
808 | 807 | public function mod($divisor, $remainder = 0) |