1 | <?php |
||
7 | class Config extends InjectableConfig |
||
8 | { |
||
9 | const CONFIG = 'modules/spiralPhpFastCache'; |
||
10 | |||
11 | /** @var array */ |
||
12 | protected $config = [ |
||
13 | 'adapter' => '', |
||
14 | 'adapters' => [] |
||
15 | ]; |
||
16 | |||
17 | /** |
||
18 | * @return string |
||
19 | */ |
||
20 | public function getAdapter(): string |
||
24 | |||
25 | /** |
||
26 | * @return array |
||
27 | */ |
||
28 | public function getAdapterOptions(): array |
||
32 | } |