Total Complexity | 1 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
9 | abstract class AbstractStandards |
||
10 | { |
||
11 | /** |
||
12 | * Simply check yaml file is valid, if not \Symfony\Component\Yaml\Yaml class throws \Symfony\Component\Yaml\Exception\ParseException |
||
13 | * |
||
14 | * @param string $pathToYamlFile |
||
15 | * @throws \Symfony\Component\Yaml\Exception\ParseException |
||
16 | */ |
||
17 | 7 | protected function runCheckYamlFileIsValid(string $pathToYamlFile): void |
|
22 |