Completed
Push — master ( 3ba647...e31edf )
by Kamil
04:07
created
src/Redis/Redis.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@
 block discarded – undo
162 162
 
163 163
         $this->reqs = [];
164 164
 
165
-         // TODO patch missing pub/sub, pipeline, auth
165
+            // TODO patch missing pub/sub, pipeline, auth
166 166
         $this->handleStop();
167 167
         $this->emit('stop', [ $this ]);
168 168
 
Please login to merge, or discard this patch.
example/example.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -85,10 +85,10 @@
 block discarded – undo
85 85
     });
86 86
 
87 87
     $redis->rename('test','new_test')->then(function ($value) use ($redis) {
88
-       if ($value == 'OK') {
89
-           global $ret;
90
-           $ret[] = 'RENAME OK';
91
-       }
88
+        if ($value == 'OK') {
89
+            global $ret;
90
+            $ret[] = 'RENAME OK';
91
+        }
92 92
     });
93 93
 
94 94
     $redis->ttl('new_test')->then(function ($value) {
Please login to merge, or discard this patch.