Completed
Push — master ( 412b6e...c5c325 )
by Mehmet
04:00
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 = null;
14 14
 
@@ -101,9 +101,9 @@  discard block
 block discarded – undo
101 101
             return $this->handler->mSet($values);
102 102
         }
103 103
 
104
-        $return =[];
104
+        $return = [];
105 105
         foreach ($values as $key => $value) {
106
-            $return[$key] =  $this->set($key, $value, $ttl);
106
+            $return[$key] = $this->set($key, $value, $ttl);
107 107
         }
108 108
         return $return;
109 109
     }
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
         foreach ($keys as $key) {
116 116
             $this->checkReservedCharacters($key);
117 117
         }
118
-        $return =[];
118
+        $return = [];
119 119
         foreach ($keys as $key) {
120 120
             $return[$key] = (bool) $this->delete($key);
121 121
         }
Please login to merge, or discard this patch.