| 1 | <?php |
||
| 12 | class ApcCacheAdapter extends AbstractCacheAdapter |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @param $key |
||
| 16 | * @param null $options |
||
| 17 | * @return bool|\string[] |
||
| 18 | */ |
||
| 19 | public function has($key, $options = null) |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param $key |
||
| 26 | * @param mixed $options |
||
| 27 | * @return mixed|false |
||
| 28 | */ |
||
| 29 | public function fetch($key, $options = null) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param $key |
||
| 36 | * @param $data |
||
| 37 | * @param $lifeTime |
||
| 38 | * @param $options |
||
| 39 | * @return bool |
||
| 40 | */ |
||
| 41 | public function store($key, $data, $lifeTime = null, $options = null) |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @param $key |
||
| 48 | * @param mixed $options |
||
| 49 | * @return bool |
||
| 50 | */ |
||
| 51 | public function remove($key, $options = null) |
||
| 55 | } |
||
| 56 |