1 | <?php |
||
19 | class LaminasStorageCache extends CacheProvider |
||
20 | { |
||
21 | /** @var StorageInterface */ |
||
22 | protected $storage; |
||
23 | |||
24 | 5 | public function __construct(StorageInterface $storage) |
|
28 | |||
29 | /** |
||
30 | * {@inheritDoc} |
||
31 | */ |
||
32 | 4 | protected function doFetch($id) |
|
38 | |||
39 | /** |
||
40 | * {@inheritDoc} |
||
41 | */ |
||
42 | 4 | protected function doContains($id) |
|
46 | |||
47 | /** |
||
48 | * {@inheritDoc} |
||
49 | */ |
||
50 | 4 | protected function doSave($id, $data, $lifeTime = false) |
|
55 | |||
56 | /** |
||
57 | * {@inheritDoc} |
||
58 | */ |
||
59 | 1 | protected function doDelete($id) |
|
63 | |||
64 | /** |
||
65 | * {@inheritDoc} |
||
66 | */ |
||
67 | 1 | protected function doFlush() |
|
77 | |||
78 | /** |
||
79 | * {@inheritDoc} |
||
80 | */ |
||
81 | 1 | protected function doGetStats() |
|
97 | } |
||
98 |
This class constant has been deprecated.