Completed
Push — master ( 842a53...3f8831 )
by Mehmet
04:01
created
src/RedisCache.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 
11 11
 class RedisCache implements CacheInterface
12 12
 {
13
-    const PSR16_RESERVED_CHARACTERS = ['{','}','(',')','/','@',':'];
13
+    const PSR16_RESERVED_CHARACTERS = ['{', '}', '(', ')', '/', '@', ':'];
14 14
 
15 15
     private $handler;
16 16
 
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
         foreach ($keys as $key) {
115 115
             $this->checkKeysValidity($key);
116 116
         }
117
-        $return =[];
117
+        $return = [];
118 118
         foreach ($keys as $key) {
119 119
             $return[$key] = (bool) $this->delete($key);
120 120
         }
Please login to merge, or discard this patch.