Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
37 | public function __construct( |
||
38 | array $source, |
||
39 | array $standards, |
||
40 | array $sniffs, |
||
41 | array $excludedSniffs, |
||
42 | bool $isFixer |
||
43 | ) { |
||
44 | $this->source = $source; |
||
45 | $this->standards = $standards; |
||
46 | $this->sniffs = $sniffs; |
||
47 | $this->excludedSniffs = $excludedSniffs; |
||
48 | $this->isFixer = $isFixer; |
||
49 | } |
||
50 | |||
76 |