@@ -97,7 +97,7 @@ |
||
97 | 97 | * - reflClass (ReflectionClass) |
98 | 98 | * - reflFields (ReflectionProperty array) |
99 | 99 | * |
100 | - * @return array The names of all the fields that should be serialized. |
|
100 | + * @return string[] The names of all the fields that should be serialized. |
|
101 | 101 | */ |
102 | 102 | public function __sleep() |
103 | 103 | { |
@@ -31,7 +31,6 @@ |
||
31 | 31 | /** |
32 | 32 | * Combines any number of criteria arrays as clauses of an "$and" query. |
33 | 33 | * |
34 | - * @param array $criteria,... Any number of query criteria arrays |
|
35 | 34 | * @return array |
36 | 35 | */ |
37 | 36 | public function merge(/* array($field => $value), ... */) |
@@ -84,6 +84,11 @@ |
||
84 | 84 | return $className; |
85 | 85 | } |
86 | 86 | |
87 | + /** |
|
88 | + * @param string $for |
|
89 | + * @param string $targetFqcn |
|
90 | + * @param string|false $fileName |
|
91 | + */ |
|
87 | 92 | private function generateCollectionClass($for, $targetFqcn, $fileName) |
88 | 93 | { |
89 | 94 | $exploded = explode('\\', $targetFqcn); |
@@ -582,9 +582,9 @@ |
||
582 | 582 | } |
583 | 583 | |
584 | 584 | /** |
585 | - * @param $documentName |
|
585 | + * @param string $documentName |
|
586 | 586 | * |
587 | - * @return array |
|
587 | + * @return string |
|
588 | 588 | */ |
589 | 589 | private function runShardCollectionCommand($documentName) |
590 | 590 | { |
@@ -23,7 +23,6 @@ |
||
23 | 23 | use Doctrine\ODM\MongoDB\Mapping\ClassMetadataFactory; |
24 | 24 | use Doctrine\ODM\MongoDB\Mapping\ClassMetadataInfo; |
25 | 25 | use MongoDB\Driver\Exception\RuntimeException; |
26 | -use MongoDB\Driver\WriteConcern; |
|
27 | 26 | use MongoDB\Model\IndexInfo; |
28 | 27 | |
29 | 28 | class SchemaManager |
@@ -2631,7 +2631,7 @@ |
||
2631 | 2631 | * @param array $data The data for the document. |
2632 | 2632 | * @param array $hints Any hints to account for during reconstitution/lookup of the document. |
2633 | 2633 | * @param object $document The document to be hydrated into in case of creation |
2634 | - * @return object The document instance. |
|
2634 | + * @return callable|null The document instance. |
|
2635 | 2635 | * @internal Highly performance-sensitive method. |
2636 | 2636 | */ |
2637 | 2637 | public function getOrCreateDocument($className, $data, &$hints = array(), $document = null) |
@@ -20,7 +20,6 @@ |
||
20 | 20 | namespace Doctrine\ODM\MongoDB\Mapping\Driver; |
21 | 21 | |
22 | 22 | use Doctrine\Common\Annotations\AnnotationReader; |
23 | -use Doctrine\Common\Annotations\AnnotationRegistry; |
|
24 | 23 | use Doctrine\Common\Annotations\Reader; |
25 | 24 | use Doctrine\Common\Persistence\Mapping\ClassMetadata; |
26 | 25 | use Doctrine\Common\Persistence\Mapping\Driver\AnnotationDriver as AbstractAnnotationDriver; |
@@ -107,7 +107,6 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
@@ -90,6 +90,9 @@ |
||
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)) { |
@@ -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, ... */) |