@@ -26,7 +26,6 @@ |
||
26 | 26 | use Doctrine\ODM\MongoDB\PersistentCollection\PersistentCollectionInterface; |
27 | 27 | use Doctrine\ODM\MongoDB\Proxy\Proxy; |
28 | 28 | use Doctrine\ODM\MongoDB\UnitOfWork; |
29 | -use MongoDB\Driver\ReadPreference; |
|
30 | 29 | |
31 | 30 | /** |
32 | 31 | * The ReferencePrimer is responsible for priming reference relationships. |
@@ -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 | { |
@@ -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 |
@@ -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']) { |
@@ -6,7 +6,6 @@ |
||
6 | 6 | use Doctrine\Common\Collections\Collection; |
7 | 7 | use Doctrine\Common\Collections\Criteria; |
8 | 8 | use Doctrine\Common\Collections\Selectable; |
9 | -use Doctrine\Common\Inflector\Inflector; |
|
10 | 9 | use Doctrine\Common\Persistence\ObjectRepository; |
11 | 10 | use Doctrine\ODM\MongoDB\Mapping\ClassMetadata; |
12 | 11 | use Doctrine\ODM\MongoDB\Query\QueryExpressionVisitor; |
@@ -1117,7 +1117,7 @@ |
||
1117 | 1117 | * @since 1.5 |
1118 | 1118 | * @param mixed|self $start An integer that specifies the start of the sequence. Can be any valid expression that resolves to an integer. |
1119 | 1119 | * @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. |
1120 | - * @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. |
|
1120 | + * @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. |
|
1121 | 1121 | * @return $this |
1122 | 1122 | */ |
1123 | 1123 | public function range($start, $end, $step = 1) |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | * |
221 | 221 | * @see Expr::geoWithin() |
222 | 222 | * @see http://docs.mongodb.org/manual/reference/operator/geoWithin/ |
223 | - * @param array|Geometry $geometry |
|
223 | + * @param Geometry $geometry |
|
224 | 224 | * @return $this |
225 | 225 | */ |
226 | 226 | public function geoWithin(Geometry $geometry) |
@@ -482,7 +482,7 @@ discard block |
||
482 | 482 | * @see Expr::mod() |
483 | 483 | * @see http://docs.mongodb.org/manual/reference/operator/mod/ |
484 | 484 | * @param float|integer $divisor |
485 | - * @param float|integer $remainder |
|
485 | + * @param integer $remainder |
|
486 | 486 | * @return $this |
487 | 487 | */ |
488 | 488 | public function mod($divisor, $remainder = 0) |
@@ -411,7 +411,7 @@ discard block |
||
411 | 411 | * |
412 | 412 | * @see http://docs.mongodb.org/manual/meta/aggregation-quick-reference/#aggregation-expressions |
413 | 413 | * @see Expr::expression |
414 | - * @param mixed|Expr $value |
|
414 | + * @param boolean $value |
|
415 | 415 | * @return $this |
416 | 416 | */ |
417 | 417 | public function expression($value) |
@@ -1035,7 +1035,7 @@ discard block |
||
1035 | 1035 | * @since 1.5 |
1036 | 1036 | * @param mixed|Expr $start An integer that specifies the start of the sequence. Can be any valid expression that resolves to an integer. |
1037 | 1037 | * @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. |
1038 | - * @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. |
|
1038 | + * @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. |
|
1039 | 1039 | * @return $this |
1040 | 1040 | */ |
1041 | 1041 | public function range($start, $end, $step = 1) |
@@ -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 | { |
@@ -1079,7 +1079,7 @@ discard block |
||
1079 | 1079 | * @see Expr::mod() |
1080 | 1080 | * @see http://docs.mongodb.org/manual/reference/operator/mod/ |
1081 | 1081 | * @param float|integer $divisor |
1082 | - * @param float|integer $remainder |
|
1082 | + * @param integer $remainder |
|
1083 | 1083 | * @return $this |
1084 | 1084 | */ |
1085 | 1085 | public function mod($divisor, $remainder = 0) |
@@ -1243,7 +1243,7 @@ discard block |
||
1243 | 1243 | * If a custom callable is used, its signature should conform to the default |
1244 | 1244 | * Closure defined in {@link ReferencePrimer::__construct()}. |
1245 | 1245 | * |
1246 | - * @param boolean|callable $primer |
|
1246 | + * @param boolean $primer |
|
1247 | 1247 | * @return $this |
1248 | 1248 | * @throws \InvalidArgumentException If $primer is not boolean or callable |
1249 | 1249 | */ |
@@ -1637,7 +1637,7 @@ discard block |
||
1637 | 1637 | * field name (key) and order (value) pairs. |
1638 | 1638 | * |
1639 | 1639 | * @param array|string $fieldName Field name or array of field/order pairs |
1640 | - * @param int|string $order Field order (if one field is specified) |
|
1640 | + * @param integer $order Field order (if one field is specified) |
|
1641 | 1641 | * @return $this |
1642 | 1642 | */ |
1643 | 1643 | public function sort($fieldName, $order = 1) |
@@ -804,7 +804,7 @@ |
||
804 | 804 | * @see Builder::mod() |
805 | 805 | * @see http://docs.mongodb.org/manual/reference/operator/mod/ |
806 | 806 | * @param float|integer $divisor |
807 | - * @param float|integer $remainder |
|
807 | + * @param integer $remainder |
|
808 | 808 | * @return $this |
809 | 809 | */ |
810 | 810 | public function mod($divisor, $remainder = 0) |