| 1 | <?php |
||
| 19 | class DoctrineStorage implements StorageInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var Cache |
||
| 23 | */ |
||
| 24 | private $cache; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param Cache $cache |
||
| 28 | */ |
||
| 29 | 6 | public function __construct(Cache $cache) |
|
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | */ |
||
| 37 | 1 | public function offsetExists($offset) |
|
| 41 | |||
| 42 | /** |
||
| 43 | * {@inheritdoc} |
||
| 44 | */ |
||
| 45 | 2 | public function offsetGet($offset) |
|
| 51 | |||
| 52 | /** |
||
| 53 | * {@inheritdoc} |
||
| 54 | */ |
||
| 55 | 1 | public function offsetSet($offset, $value) |
|
| 59 | |||
| 60 | /** |
||
| 61 | * {@inheritdoc} |
||
| 62 | */ |
||
| 63 | 1 | public function offsetUnset($offset) |
|
| 67 | } |
||
| 68 |