1 | <?php |
||
13 | class ApcCacheAdapter extends AbstractCacheAdapter |
||
|
|||
14 | { |
||
15 | /** |
||
16 | * @param $key |
||
17 | * @param null $options |
||
18 | * @return bool|\string[] |
||
19 | */ |
||
20 | public function has($key, $options = null) |
||
24 | |||
25 | /** |
||
26 | * @param $key |
||
27 | * @param mixed $options |
||
28 | * @return mixed|false |
||
29 | */ |
||
30 | public function fetch($key, $options = null) |
||
34 | |||
35 | /** |
||
36 | * @param $key |
||
37 | * @param $data |
||
38 | * @param $lifeTime |
||
39 | * @param $options |
||
40 | * @return bool |
||
41 | */ |
||
42 | public function store($key, $data, $lifeTime = null, $options = null) |
||
46 | |||
47 | /** |
||
48 | * @param $key |
||
49 | * @param mixed $options |
||
50 | * @return bool |
||
51 | */ |
||
52 | public function remove($key, $options = null) |
||
56 | } |
||
57 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.