Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
41 | 36 | public function __construct( |
|
42 | string $pathToFile, |
||
43 | float $resultCode, |
||
44 | ?string $message = null, |
||
45 | bool $canBeFixedByFixer = false |
||
46 | ) { |
||
47 | 36 | $this->pathToFile = $pathToFile; |
|
48 | 36 | $this->resultCode = $resultCode; |
|
49 | 36 | $this->message = $message; |
|
50 | 36 | $this->canBeFixedByFixer = $canBeFixedByFixer; |
|
51 | } |
||
85 |