1 | <?php |
||
14 | class MongoProvider extends ProviderAbstract |
||
15 | { |
||
16 | /** |
||
17 | * Get storage state value |
||
18 | * |
||
19 | * @param string $key |
||
20 | * @param $default |
||
21 | * |
||
22 | * @return mixed |
||
23 | */ |
||
24 | public function getStorageState(string $key, $default = null): array |
||
34 | |||
35 | /** |
||
36 | * Set storage state value |
||
37 | * |
||
38 | * @param string $key |
||
39 | * @param $value |
||
40 | */ |
||
41 | public function setStorageState(string $key, array $value) |
||
48 | } |
||
49 |