Completed
Push — master ( a50624...85c5ae )
by Maciej
15s
created
lib/Doctrine/ODM/MongoDB/Hydrator/HydratorFactory.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -172,6 +172,9 @@
 block discarded – undo
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 = '';
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Repository/DocumentRepository.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -87,6 +87,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/UnitOfWork.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -2182,6 +2182,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Mapping/ClassMetadata.php 1 patch
Doc Comments   +7 added lines, -3 removed lines patch added patch discarded remove patch
@@ -576,6 +576,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     {
Please login to merge, or discard this patch.