| 1 | <?php |
||
| 28 | 7 | class ZendStorageCache extends AbstractCache |
|
| 29 | 7 | { |
|
| 30 | /** |
||
| 31 | 5 | * @var string storage key |
|
| 32 | */ |
||
| 33 | 5 | protected $key; |
|
| 34 | |||
| 35 | 5 | /** |
|
| 36 | 1 | * @var StorageInterface |
|
| 37 | */ |
||
| 38 | 5 | protected $storage; |
|
| 39 | |||
| 40 | 2 | public function __construct(StorageInterface $storage, string $key = 'bsbflysystem') |
|
| 45 | |||
| 46 | public function load(): void |
||
| 54 | |||
| 55 | public function save(): void |
||
| 60 | } |
||
| 61 |