@@ -228,7 +228,9 @@ |
||
228 | 228 | { |
229 | 229 | $cachedData = $this->_loadCache(); |
230 | 230 | (false === $timestamp) ? $type = 'data' : $type = 'time'; |
231 | - if (!isset($cachedData[$key][$type])) return null; |
|
231 | + if (!isset($cachedData[$key][$type])) { |
|
232 | + return null; |
|
233 | + } |
|
232 | 234 | return unserialize($cachedData[$key][$type]); |
233 | 235 | } |
234 | 236 |