@@ -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) |
@@ -362,6 +362,7 @@ |
||
| 362 | 362 | * query array, provided they exist and are not null. |
| 363 | 363 | * |
| 364 | 364 | * @param string ...$keys One or more option keys to be read |
| 365 | + * @param string[] $keys |
|
| 365 | 366 | * @return array |
| 366 | 367 | */ |
| 367 | 368 | private function getQueryOptions(string ...$keys) |
@@ -482,7 +482,7 @@ |
||
| 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) |
@@ -1005,7 +1005,7 @@ discard block |
||
| 1005 | 1005 | /** |
| 1006 | 1006 | * Gets the ReflectionProperties of the mapped class. |
| 1007 | 1007 | * |
| 1008 | - * @return array An array of ReflectionProperty instances. |
|
| 1008 | + * @return \ReflectionProperty[] An array of ReflectionProperty instances. |
|
| 1009 | 1009 | */ |
| 1010 | 1010 | public function getReflectionProperties() |
| 1011 | 1011 | { |
@@ -1553,7 +1553,7 @@ discard block |
||
| 1553 | 1553 | * |
| 1554 | 1554 | * @param string $dbFieldName |
| 1555 | 1555 | * |
| 1556 | - * @return array |
|
| 1556 | + * @return string |
|
| 1557 | 1557 | * @throws MappingException |
| 1558 | 1558 | */ |
| 1559 | 1559 | public function getFieldMappingByDbFieldName($dbFieldName) |
@@ -2064,7 +2064,7 @@ discard block |
||
| 2064 | 2064 | * - reflClass (ReflectionClass) |
| 2065 | 2065 | * - reflFields (ReflectionProperty array) |
| 2066 | 2066 | * |
| 2067 | - * @return array The names of all the fields that should be serialized. |
|
| 2067 | + * @return string[] The names of all the fields that should be serialized. |
|
| 2068 | 2068 | */ |
| 2069 | 2069 | public function __sleep() |
| 2070 | 2070 | { |
@@ -5,7 +5,6 @@ |
||
| 5 | 5 | use Doctrine\ODM\MongoDB\Mapping\ClassMetadata; |
| 6 | 6 | use Doctrine\ODM\MongoDB\Mapping\ClassMetadataFactory; |
| 7 | 7 | use MongoDB\Driver\Exception\RuntimeException; |
| 8 | -use MongoDB\Driver\WriteConcern; |
|
| 9 | 8 | use MongoDB\Model\IndexInfo; |
| 10 | 9 | |
| 11 | 10 | class SchemaManager |
@@ -384,7 +384,7 @@ discard block |
||
| 384 | 384 | * the unique index. Additionally, the background option is only |
| 385 | 385 | * relevant to index creation and is not considered. |
| 386 | 386 | * |
| 387 | - * @param array|IndexInfo $mongoIndex Mongo index data. |
|
| 387 | + * @param IndexInfo $mongoIndex Mongo index data. |
|
| 388 | 388 | * @param array $documentIndex Document index data. |
| 389 | 389 | * @return bool True if the indexes are equivalent, otherwise false. |
| 390 | 390 | */ |
@@ -528,7 +528,7 @@ discard block |
||
| 528 | 528 | /** |
| 529 | 529 | * @param string $documentName |
| 530 | 530 | * |
| 531 | - * @return array |
|
| 531 | + * @return string |
|
| 532 | 532 | */ |
| 533 | 533 | private function runShardCollectionCommand($documentName) |
| 534 | 534 | { |
@@ -3,7 +3,6 @@ |
||
| 3 | 3 | namespace Doctrine\ODM\MongoDB\Mapping\Driver; |
| 4 | 4 | |
| 5 | 5 | use Doctrine\Common\Annotations\AnnotationReader; |
| 6 | -use Doctrine\Common\Annotations\AnnotationRegistry; |
|
| 7 | 6 | use Doctrine\Common\Annotations\Reader; |
| 8 | 7 | use Doctrine\Common\Persistence\Mapping\Driver\AnnotationDriver as AbstractAnnotationDriver; |
| 9 | 8 | use Doctrine\ODM\MongoDB\Events; |
@@ -17,6 +17,7 @@ discard block |
||
| 17 | 17 | |
| 18 | 18 | /** |
| 19 | 19 | * {@inheritDoc} |
| 20 | + * @param \Doctrine\Common\Persistence\Mapping\Driver\SymfonyFileLocator $locator |
|
| 20 | 21 | */ |
| 21 | 22 | public function __construct($locator, $fileExtension = self::DEFAULT_FILE_EXTENSION) |
| 22 | 23 | { |
@@ -219,6 +220,9 @@ discard block |
||
| 219 | 220 | $class->addIndex($keys, $options); |
| 220 | 221 | } |
| 221 | 222 | |
| 223 | + /** |
|
| 224 | + * @param string $type |
|
| 225 | + */ |
|
| 222 | 226 | private function addEmbedMapping(ClassMetadata $class, $embed, $type) |
| 223 | 227 | { |
| 224 | 228 | $attributes = $embed->attributes(); |
@@ -256,6 +260,9 @@ discard block |
||
| 256 | 260 | $this->addFieldMapping($class, $mapping); |
| 257 | 261 | } |
| 258 | 262 | |
| 263 | + /** |
|
| 264 | + * @param string $type |
|
| 265 | + */ |
|
| 259 | 266 | private function addReferenceMapping(ClassMetadata $class, $reference, $type) |
| 260 | 267 | { |
| 261 | 268 | $cascade = array_keys((array) $reference->cascade); |
@@ -532,7 +532,7 @@ |
||
| 532 | 532 | } |
| 533 | 533 | |
| 534 | 534 | /** |
| 535 | - * @param Cursor $cursor |
|
| 535 | + * @param \Traversable $cursor |
|
| 536 | 536 | * |
| 537 | 537 | * @return Iterator |
| 538 | 538 | */ |