Completed
Push — master ( c5c325...842a53 )
by Mehmet
02:08
created
src/RedisCache.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 
9 9
 class RedisCache implements CacheInterface
10 10
 {
11
-    const PSR16_RESERVED_CHARACTERS = ['{','}','(',')','/','@',':'];
11
+    const PSR16_RESERVED_CHARACTERS = ['{', '}', '(', ')', '/', '@', ':'];
12 12
 
13 13
     private $handler;
14 14
 
@@ -96,9 +96,9 @@  discard block
 block discarded – undo
96 96
         if ($setTtl === 0) {
97 97
             return $this->handler->mset($values);
98 98
         }
99
-        $return =[];
99
+        $return = [];
100 100
         foreach ($values as $key => $value) {
101
-            $return[$key] =  $this->set($key, $value, $setTtl);
101
+            $return[$key] = $this->set($key, $value, $setTtl);
102 102
         }
103 103
         return $return;
104 104
     }
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
         foreach ($keys as $key) {
111 111
             $this->checkKeysValidity($key);
112 112
         }
113
-        $return =[];
113
+        $return = [];
114 114
         foreach ($keys as $key) {
115 115
             $return[$key] = (bool) $this->delete($key);
116 116
         }
Please login to merge, or discard this patch.