1 | <?php |
||
11 | class DoctrineCache implements CacheInterface |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * @var Cache |
||
16 | */ |
||
17 | protected $doctrineCache; |
||
18 | |||
19 | /** |
||
20 | * @var int |
||
21 | */ |
||
22 | protected $ttl; |
||
23 | |||
24 | public function __construct(Cache $doctrineCache, $ttl = 0) |
||
29 | |||
30 | /** |
||
31 | * @inheritdoc |
||
32 | */ |
||
33 | public function get($key) |
||
43 | |||
44 | /** |
||
45 | * @inheritdoc |
||
46 | */ |
||
47 | public function set($key, $value) |
||
51 | } |
||
52 |