@@ -25,7 +25,9 @@ |
||
| 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 ) { |