Completed
Push — master ( 968d28...159570 )
by Michal
01:22
created
src/RedisProxy.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -413,7 +413,7 @@  discard block
 block discarded – undo
413 413
     /**
414 414
      * Increment the float value of a key by the given amount
415 415
      * @param string $key
416
-     * @param float $increment
416
+     * @param integer $increment
417 417
      * @return float
418 418
      */
419 419
     public function incrbyfloat($key, $increment = 1)
@@ -448,7 +448,7 @@  discard block
 block discarded – undo
448 448
     /**
449 449
      * Decrement the float value of a key by the given amount
450 450
      * @param string $key
451
-     * @param float $decrement
451
+     * @param integer $decrement
452 452
      * @return float
453 453
      */
454 454
     public function decrbyfloat($key, $decrement = 1)
@@ -566,7 +566,7 @@  discard block
 block discarded – undo
566 566
      * Increment the float value of hash field by given amount
567 567
      * @param string $key
568 568
      * @param string $field
569
-     * @param float $increment
569
+     * @param integer $increment
570 570
      * @return float
571 571
      */
572 572
     public function hincrbyfloat($key, $field, $increment = 1)
Please login to merge, or discard this patch.