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