Completed
Push — master ( 7bf0e6...52cc4c )
by Kamil
02:35
created
src/Redis/Command/CommandInterface.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      * @param int $end
43 43
      * @return mixed
44 44
      */
45
-    public function bitCount($key, $start=0, $end=0);
45
+    public function bitCount($key, $start = 0, $end = 0);
46 46
 
47 47
     /**
48 48
      * @doc https://redis.io/commands/bitfield
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      * @param int $end
74 74
      * @return mixed
75 75
      */
76
-    public function bitPos($key, $bit, $start=0, $end=0);
76
+    public function bitPos($key, $bit, $start = 0, $end = 0);
77 77
 
78 78
     /**
79 79
      * @doc https://redis.io/commands/blpop
@@ -567,7 +567,7 @@  discard block
 block discarded – undo
567 567
      * @param string $message
568 568
      * @return mixed
569 569
      */
570
-    public function ping($message='pong');
570
+    public function ping($message = 'pong');
571 571
 
572 572
     /**
573 573
      * @doc https://redis.io/commands/quit
@@ -1357,7 +1357,7 @@  discard block
 block discarded – undo
1357 1357
      * @param array $args
1358 1358
      * @return mixed
1359 1359
      */
1360
-    public function sLowLog($command, array $args=[]);
1360
+    public function sLowLog($command, array $args = []);
1361 1361
 
1362 1362
     /**
1363 1363
      * @doc https://redis.io/commands/smembers
Please login to merge, or discard this patch.