Completed
Pull Request — master (#26)
by Nelson
03:22
created
src/IntString.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
          * Nota: Cualquier objeto que no sea instancia de IntString se
105 105
          * considerará menor.
106 106
          *
107
-         * @param IntString|mixed $other Objeto con el que se va a comparar.
107
+         * @param VersionComponent $other Objeto con el que se va a comparar.
108 108
          *
109 109
          * @return integer Cero (0), si esta instancia es igual a $other; mayor
110 110
          *   a cero (>0), si es mayor a $other; menor a cero (<0), si es menor.
Please login to merge, or discard this patch.
src/Version.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@
 block discarded – undo
38 38
          *
39 39
          * @param int                              $major    Componente principal
40 40
          * @param int                              $minor    Componente secundario
41
-         * @param int|string|VersionComponent|null $build    Componente de compilación
42
-         * @param int|string|VersionComponent|null $revision Componente de revisión
41
+         * @param VersionComponent|null $build    Componente de compilación
42
+         * @param VersionComponent|null $revision Componente de revisión
43 43
          *
44 44
          * @throws InvalidArgumentException
45 45
          * */
Please login to merge, or discard this patch.
src/VersionComponent.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@
 block discarded – undo
166 166
         /**
167 167
          * Getter method for VersionComponent::IntValue property.
168 168
          *
169
-         * @return integer|NULL
169
+         * @return integer
170 170
          * */
171 171
         public function getIntValue()
172 172
         {
Please login to merge, or discard this patch.