Completed
Pull Request — 1.0 (#19)
by
unknown
08:44
created
src/AppserverIo/Lang/Float.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
     /**
261 261
      * Adds the value of the passed Float.
262 262
      *
263
-     * @param \AppserverIo\Lang\Float $toAdd The Float to add
263
+     * @param double $toAdd The Float to add
264 264
      *
265 265
      * @return \AppserverIo\Lang\Float The instance
266 266
      */
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
     /**
274 274
      * Subtracts the value of the passed Float.
275 275
      *
276
-     * @param \AppserverIo\Lang\Float $toSubtract The Float to subtract
276
+     * @param double $toSubtract The Float to subtract
277 277
      *
278 278
      * @return \AppserverIo\Lang\Float The instance
279 279
      */
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
     /**
287 287
      * Multiplies the Float with the passed one.
288 288
      *
289
-     * @param \AppserverIo\Lang\Float $toMultiply The Float to multiply
289
+     * @param double $toMultiply The Float to multiply
290 290
      *
291 291
      * @return \AppserverIo\Lang\Float The instance
292 292
      */
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
     /**
300 300
      * Divides the Float by the passed one.
301 301
      *
302
-     * @param \AppserverIo\Lang\Float $dividyBy The Float to dividy by
302
+     * @param double $dividyBy The Float to dividy by
303 303
      *
304 304
      * @return \AppserverIo\Lang\Float The instance
305 305
      */
Please login to merge, or discard this patch.
src/AppserverIo/Lang/Integer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@
 block discarded – undo
151 151
      *
152 152
      * @param String $string The string to be parsed.
153 153
      *
154
-     * @return \AppserverIo\Lang\Integer The <code>Integer</code> value represented by the string argument.
154
+     * @return integer The <code>Integer</code> value represented by the string argument.
155 155
      * @exception \AppserverIo\Lang\NumberFormatException If the string does not contain a parsable <code>Integer</code>.
156 156
      * @see \AppserverIo\Lang\Integer::valueOf($string)
157 157
      */
Please login to merge, or discard this patch.
src/AppserverIo/Lang/String.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -270,7 +270,7 @@
 block discarded – undo
270 270
      * the string, and <code>^</code> indicates exponentiation.
271 271
      * (The hash value of the empty string is zero.)
272 272
      *
273
-     * @return string A hash code value for this object.
273
+     * @return integer A hash code value for this object.
274 274
      */
275 275
     public function hashCode()
276 276
     {
Please login to merge, or discard this patch.