Conditions | 4 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public function get($key, $default = null){ |
||
23 | $key = $this->checkKey($key); |
||
24 | |||
25 | if(isset($this->cache[$key])){ |
||
26 | |||
27 | if($this->cache[$key]['ttl'] === null || $this->cache[$key]['ttl'] > time()){ |
||
28 | return $this->cache[$key]['content']; |
||
29 | } |
||
30 | |||
31 | unset($this->cache[$key]); |
||
32 | } |
||
33 | |||
34 | return $default; |
||
35 | } |
||
64 |