| 1 | <?php |
||
| 16 | class CacheConfig extends InjectableConfig |
||
| 17 | { |
||
| 18 | use AliasTrait; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Configuration section. |
||
| 22 | */ |
||
| 23 | const CONFIG = 'cache'; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var array |
||
| 27 | */ |
||
| 28 | protected $config = [ |
||
| 29 | 'store' => '', |
||
| 30 | 'stores' => [] |
||
| 31 | ]; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param string $store |
||
| 35 | * @return bool |
||
| 36 | */ |
||
| 37 | public function hasStore($store) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @param string $store |
||
| 44 | * @return string |
||
| 45 | */ |
||
| 46 | public function storeClass($store) |
||
| 55 | |||
| 56 | /** |
||
| 57 | * @param string $store |
||
| 58 | * @return array |
||
| 59 | */ |
||
| 60 | public function storeOptions($store) |
||
| 64 | } |