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