Completed
Push — master ( 22189c...f0fe3a )
by Maciej
13s
created
lib/Doctrine/ODM/MongoDB/Mapping/ClassMetadata.php 1 patch
Doc Comments   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -939,7 +939,7 @@  discard block
 block discarded – undo
939 939
     }
940 940
 
941 941
     /**
942
-     * @return array
942
+     * @return string|null
943 943
      */
944 944
     public function getShardKey()
945 945
     {
@@ -1039,7 +1039,7 @@  discard block
 block discarded – undo
1039 1039
     /**
1040 1040
      * Gets the ReflectionProperties of the mapped class.
1041 1041
      *
1042
-     * @return array An array of ReflectionProperty instances.
1042
+     * @return \ReflectionProperty[] An array of ReflectionProperty instances.
1043 1043
      */
1044 1044
     public function getReflectionProperties()
1045 1045
     {
@@ -1352,6 +1352,7 @@  discard block
 block discarded – undo
1352 1352
      * {@inheritDoc}
1353 1353
      *
1354 1354
      * Checks whether the class has a mapped association (embed or reference) with the given field name.
1355
+     * @param string $fieldName
1355 1356
      */
1356 1357
     public function hasAssociation($fieldName)
1357 1358
     {
@@ -1588,7 +1589,7 @@  discard block
 block discarded – undo
1588 1589
      *
1589 1590
      * @param string $dbFieldName
1590 1591
      *
1591
-     * @return array
1592
+     * @return string
1592 1593
      * @throws MappingException
1593 1594
      */
1594 1595
     public function getFieldMappingByDbFieldName($dbFieldName)
@@ -2098,7 +2099,7 @@  discard block
 block discarded – undo
2098 2099
      *      - reflClass (ReflectionClass)
2099 2100
      *      - reflFields (ReflectionProperty array)
2100 2101
      *
2101
-     * @return array The names of all the fields that should be serialized.
2102
+     * @return string[] The names of all the fields that should be serialized.
2102 2103
      */
2103 2104
     public function __sleep()
2104 2105
     {
Please login to merge, or discard this patch.