Completed
Pull Request — master (#5)
by Michal
02:05
created
src/RedisProxy.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
     /**
291 291
      * Increment the float value of a key by the given amount
292 292
      * @param string $key
293
-     * @param float $increment
293
+     * @param integer $increment
294 294
      * @return float
295 295
      */
296 296
     public function incrbyfloat($key, $increment = 1)
@@ -397,7 +397,7 @@  discard block
 block discarded – undo
397 397
      * Increment the float value of hash field by given amount
398 398
      * @param string $key
399 399
      * @param string $field
400
-     * @param float $increment
400
+     * @param integer $increment
401 401
      * @return float
402 402
      */
403 403
     public function hincrbyfloat($key, $field, $increment = 1)
@@ -632,6 +632,9 @@  discard block
 block discarded – undo
632 632
         return array_combine($keys, $values);
633 633
     }
634 634
 
635
+    /**
636
+     * @param string $command
637
+     */
635 638
     private function prepareArguments($command, ...$params)
636 639
     {
637 640
         if (!isset($params[0])) {
Please login to merge, or discard this patch.