Conditions | 3 |
Paths | 4 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | public function getCacheValues($cacheName): array |
||
29 | { |
||
30 | $cacheName = $this->cleanCacheName($cacheName); |
||
31 | $cache = $this->getCache(); |
||
32 | $array = $cache->has($cacheName) ? unserialize($cache->get($cacheName)) : []; |
||
|
|||
33 | |||
34 | return $cache->has($cacheName) ? unserialize($cache->get($cacheName)) : []; |
||
35 | } |
||
51 |