@@ -172,6 +172,9 @@ |
||
172 | 172 | } |
173 | 173 | } |
174 | 174 | |
175 | + /** |
|
176 | + * @param string|null $fileName |
|
177 | + */ |
|
175 | 178 | private function generateHydratorClass(ClassMetadata $class, string $hydratorClassName, ?string $fileName) : void |
176 | 179 | { |
177 | 180 | $code = ''; |
@@ -87,6 +87,7 @@ |
||
87 | 87 | * expected version may be specified. |
88 | 88 | * |
89 | 89 | * @param mixed $id Identifier. |
90 | + * @param integer $lockVersion |
|
90 | 91 | * |
91 | 92 | * @throws MappingException |
92 | 93 | * @throws LockException |
@@ -404,7 +404,7 @@ |
||
404 | 404 | * The background option is only relevant to index creation and is not |
405 | 405 | * considered. |
406 | 406 | * |
407 | - * @param array|IndexInfo $mongoIndex Mongo index data. |
|
407 | + * @param IndexInfo $mongoIndex Mongo index data. |
|
408 | 408 | */ |
409 | 409 | public function isMongoIndexEquivalentToDocumentIndex($mongoIndex, array $documentIndex) : bool |
410 | 410 | { |
@@ -2182,6 +2182,7 @@ |
||
2182 | 2182 | * Clears the UnitOfWork. |
2183 | 2183 | * |
2184 | 2184 | * @internal |
2185 | + * @param string $documentName |
|
2185 | 2186 | */ |
2186 | 2187 | public function clear(?string $documentName = null) : void |
2187 | 2188 | { |
@@ -576,6 +576,7 @@ discard block |
||
576 | 576 | * Sets the mapped identifier field of this class. |
577 | 577 | * |
578 | 578 | * @internal |
579 | + * @param string|null $identifier |
|
579 | 580 | */ |
580 | 581 | public function setIdentifier(?string $identifier) : void |
581 | 582 | { |
@@ -646,6 +647,7 @@ discard block |
||
646 | 647 | * |
647 | 648 | * @throws InvalidArgumentException If document class is not this class or |
648 | 649 | * a Proxy of this class. |
650 | + * @param \Doctrine\ODM\MongoDB\Event\LifecycleEventArgs[] $arguments |
|
649 | 651 | */ |
650 | 652 | public function invokeLifecycleCallbacks(string $event, object $document, ?array $arguments = null) : void |
651 | 653 | { |
@@ -712,7 +714,7 @@ discard block |
||
712 | 714 | * Note: A method may be registered multiple times for different fields. |
713 | 715 | * it will be invoked only once for the first field found. |
714 | 716 | * |
715 | - * @param array|string $fields Database field name(s) |
|
717 | + * @param string $fields Database field name(s) |
|
716 | 718 | */ |
717 | 719 | public function registerAlsoLoadMethod(string $method, $fields) : void |
718 | 720 | { |
@@ -736,7 +738,7 @@ discard block |
||
736 | 738 | * are only used to discern the hydration class and are not mapped to class |
737 | 739 | * properties. |
738 | 740 | * |
739 | - * @param array|string|null $discriminatorField |
|
741 | + * @param string|null $discriminatorField |
|
740 | 742 | * |
741 | 743 | * @throws MappingException If the discriminator field conflicts with the |
742 | 744 | * "name" attribute of a mapped field. |
@@ -804,6 +806,7 @@ discard block |
||
804 | 806 | * Used for SINGLE_TABLE inheritance mapping strategies if the document has no discriminator value |
805 | 807 | * |
806 | 808 | * @throws MappingException |
809 | + * @param string|null $defaultDiscriminatorValue |
|
807 | 810 | */ |
808 | 811 | public function setDefaultDiscriminatorValue(?string $defaultDiscriminatorValue) : void |
809 | 812 | { |
@@ -1662,6 +1665,7 @@ discard block |
||
1662 | 1665 | /** |
1663 | 1666 | * Sets the name of the field that is to be used for versioning if this class is |
1664 | 1667 | * versioned for optimistic locking. |
1668 | + * @param string|null $versionField |
|
1665 | 1669 | */ |
1666 | 1670 | public function setVersionField(?string $versionField) : void |
1667 | 1671 | { |
@@ -1958,7 +1962,7 @@ discard block |
||
1958 | 1962 | * - reflClass (ReflectionClass) |
1959 | 1963 | * - reflFields (ReflectionProperty array) |
1960 | 1964 | * |
1961 | - * @return array The names of all the fields that should be serialized. |
|
1965 | + * @return string[] The names of all the fields that should be serialized. |
|
1962 | 1966 | */ |
1963 | 1967 | public function __sleep() |
1964 | 1968 | { |
@@ -18,6 +18,9 @@ |
||
18 | 18 | */ |
19 | 19 | class OnClearEventArgs extends BaseOnClearEventArgs |
20 | 20 | { |
21 | + /** |
|
22 | + * @param DocumentManager $objectManager |
|
23 | + */ |
|
21 | 24 | public function __construct($objectManager, $entityClass = null) |
22 | 25 | { |
23 | 26 | if (self::class !== static::class) { |
@@ -21,6 +21,9 @@ |
||
21 | 21 | */ |
22 | 22 | class MappingException extends BaseMappingException |
23 | 23 | { |
24 | + /** |
|
25 | + * @param ReflectionException $previous |
|
26 | + */ |
|
24 | 27 | public function __construct($message = '', $code = 0, ?Throwable $previous = null) |
25 | 28 | { |
26 | 29 | if (self::class !== static::class) { |
@@ -36,6 +36,9 @@ |
||
36 | 36 | parent::__construct($dm); |
37 | 37 | } |
38 | 38 | |
39 | + /** |
|
40 | + * @param \Doctrine\Common\Persistence\Mapping\ClassMetadata $classMetadata |
|
41 | + */ |
|
39 | 42 | public function setFoundMetadata(?ClassMetadata $classMetadata = null) |
40 | 43 | { |
41 | 44 | $this->foundMetadata = $classMetadata; |