Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | class JsonReader |
||
27 | { |
||
28 | /** |
||
29 | * Read options from a JSON formatted config file |
||
30 | * |
||
31 | * @param string $sConfigFile The full path to the config file |
||
32 | * |
||
33 | * @return array |
||
34 | * @throws FileAccess |
||
35 | * @throws FileContent |
||
36 | */ |
||
37 | public static function read(string $sConfigFile): array |
||
55 |