1 | <?php |
||
5 | class DummyCache implements CacheInterface |
||
6 | { |
||
7 | /** |
||
8 | * @inheritdoc |
||
9 | */ |
||
10 | public function test($id) |
||
14 | |||
15 | /** |
||
16 | * @inheritdoc |
||
17 | */ |
||
18 | public function save($data, $id = null, $tags = [], $specificLifetime = null, $priority = 8) |
||
22 | |||
23 | /** |
||
24 | * @inheritdoc |
||
25 | */ |
||
26 | public function load($id, $doNotTestCacheValidity = false, $doNotUnserialize = false) |
||
30 | } |
||
31 |