1 | <?php |
||
7 | class ShopwareCache implements CacheInterface |
||
8 | { |
||
9 | /** @var Zend_Cache_Core */ |
||
10 | private $shopwareCache; |
||
11 | |||
12 | /** |
||
13 | * DummyCache constructor. |
||
14 | * |
||
15 | * @param Zend_Cache_Core $shopwareCache |
||
16 | */ |
||
17 | public function __construct(Zend_Cache_Core $shopwareCache) |
||
21 | |||
22 | /** |
||
23 | * @inheritdoc |
||
24 | */ |
||
25 | public function test($id) |
||
29 | |||
30 | /** |
||
31 | * @inheritdoc |
||
32 | * @throws \Zend_Cache_Exception |
||
33 | */ |
||
34 | public function save($data, $id = null, $tags = [], $specificLifetime = null, $priority = 8) |
||
38 | |||
39 | /** |
||
40 | * @inheritdoc |
||
41 | */ |
||
42 | public function load($id, $doNotTestCacheValidity = false, $doNotUnserialize = false) |
||
46 | } |
||
47 |