1 | <?php |
||
24 | class DoctrineCache implements CacheInterface |
||
25 | { |
||
26 | /** |
||
27 | * @var Cache |
||
28 | */ |
||
29 | protected $cache; |
||
30 | |||
31 | /** |
||
32 | * Constructor |
||
33 | * |
||
34 | * @param Cache $cache |
||
35 | */ |
||
36 | public function __construct(Cache $cache) |
||
40 | |||
41 | /** |
||
42 | * @inheritdoc |
||
43 | */ |
||
44 | public function has($class) |
||
48 | |||
49 | /** |
||
50 | * @inheritdoc |
||
51 | */ |
||
52 | public function read($class) |
||
56 | |||
57 | /** |
||
58 | * @inheritdoc |
||
59 | */ |
||
60 | public function write(GenericMetadataInterface $metadata) |
||
64 | } |