Passed
Push — master ( 1d33fb...c2cdcb )
by Yuichi
01:44
created
src/Valiable.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,9 @@
 block discarded – undo
25 25
             throw new \Exception('value is null');
26 26
         }
27 27
         $data = $this->cache->get($this->prefix . $name);
28
-        if ( ! $data ) return null;
28
+        if ( ! $data ) {
29
+            return null;
30
+        }
29 31
 
30 32
         $data = $this->decode($data);
31 33
         if ( isset($data[$key]) === false  ) {
Please login to merge, or discard this patch.