| Total Complexity | 4 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | class Yaml |
||
| 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 |
||
| 59 |