Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
10 | abstract class AbstractFixer extends AbstractStandards implements FixerInterface |
||
11 | { |
||
12 | /** |
||
13 | * @param string $pathToYamlFile |
||
14 | * @param string $pathToDumpFixedFile |
||
15 | * @param \YamlStandards\Model\Config\StandardParametersData $standardParametersData |
||
16 | * @return \YamlStandards\Result\Result |
||
17 | */ |
||
18 | public function runFix(string $pathToYamlFile, string $pathToDumpFixedFile, StandardParametersData $standardParametersData): Result |
||
25 |