| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public function fetch($key) |
||
| 24 | { |
||
| 25 | $localData = $this->localCache->fetch($key); |
||
| 26 | |||
| 27 | if ($localData != false) { |
||
| 28 | return $localData; |
||
| 29 | } else { |
||
| 30 | $success = null; // stupid by-ref parameter that scrutinizer complains about |
||
| 31 | $data = apc_fetch($key, $success); |
||
| 32 | return $success ? $data : false; |
||
| 33 | } |
||
| 34 | } |
||
| 35 | |||
| 42 |