1 | <?php |
||
28 | class NullDriver extends DriverAbstract |
||
29 | { |
||
30 | /** |
||
31 | * {@inheritDoc} |
||
32 | */ |
||
33 | public function save(CacheItemInterface $item)/*# : bool */ |
||
37 | |||
38 | /** |
||
39 | * {inheritDoc} |
||
40 | */ |
||
41 | protected function driverHas(/*# string */ $key)/*# : array */ |
||
45 | |||
46 | /** |
||
47 | * {@inheritDoc} |
||
48 | */ |
||
49 | protected function driverGet(/*# string */ $key) |
||
53 | |||
54 | /** |
||
55 | * {@inheritDoc} |
||
56 | */ |
||
57 | protected function driverDelete(CacheItemInterface $item)/*# : bool */ |
||
61 | |||
62 | /** |
||
63 | * {@inheritDoc} |
||
64 | */ |
||
65 | protected function driverClear()/*# : bool */ |
||
69 | } |
||
70 |