| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 3 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 32 | public function runCommand(RunApplicationCommand $command) |
||
| 33 | { |
||
| 34 | $fixers = $this->fixerSetFactory->createFromLevelsFixersAndExcludedFixers( |
||
| 35 | $command->getFixerLevels(), |
||
| 36 | $command->getFixers(), |
||
| 37 | $command->getExcludeFixers() |
||
| 38 | ); |
||
| 39 | |||
| 40 | $this->fixer->registerCustomFixers($fixers); |
||
| 41 | } |
||
| 42 | } |
||
| 43 |