| 1 | <?php |
||
| 12 | class ConfigProvider |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Configuration key. |
||
| 16 | * |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | public const CONFIG_PREFIX = 'soluble_wallit'; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @return array[] |
||
| 23 | */ |
||
| 24 | 1 | public function __invoke(): array |
|
| 30 | |||
| 31 | /** |
||
| 32 | * @return array[] |
||
| 33 | */ |
||
| 34 | 2 | public function getDependencies(): array |
|
| 43 | } |
||
| 44 |