Test Failed
Push — master ( 0a295f...a76622 )
by Ilya
02:38
created
src/ApcuCache.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     {
15 15
         $this->assertKeyName($key);
16 16
 
17
-        return apcu_fetch($key) ?:$default;
17
+        return apcu_fetch($key) ?: $default;
18 18
     }
19 19
 
20 20
     /**
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 
72 72
         $result = apcu_store($values, (int) $ttl);
73 73
 
74
-        return $result === true ? true : (is_array($result) && count($result) == 0 ? true: false);
74
+        return $result === true ? true : (is_array($result) && count($result) == 0 ? true : false);
75 75
     }
76 76
 
77 77
     /**
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 
106 106
     private function assertKeyNames(array $keys)
107 107
     {
108
-        array_map(function ($value) {
108
+        array_map(function($value) {
109 109
             $this->assertKeyName($value);
110 110
         }, $keys);
111 111
     }
Please login to merge, or discard this patch.