Total Complexity | 4 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class INIConfig extends AbstractConfig |
||
17 | { |
||
18 | /** |
||
19 | * The constructor expects an valid filename/path to the JSON file. |
||
20 | * @param string $strConfigFile |
||
21 | */ |
||
22 | public function __construct(string $strConfigFile) |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * Parse the given file an add all settings to the internal configuration. |
||
29 | * @param string $strConfigFile |
||
30 | * @return array<mixed> |
||
31 | */ |
||
32 | protected function parseFile(string $strConfigFile) : array |
||
41 |