Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
39 | public function __construct(array $source, array $fixerLevels, array $fixers, array $excludeFixers, bool $isFixer) |
||
40 | { |
||
41 | $this->source = $source; |
||
42 | $this->fixerLevels = $fixerLevels; |
||
43 | $this->fixers = $fixers; |
||
44 | $this->excludeFixers = $excludeFixers; |
||
45 | $this->isFixer = $isFixer; |
||
46 | } |
||
47 | |||
73 |