Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | public function __construct( |
||
29 | string $propertyName, |
||
30 | string $propertyFile, |
||
31 | ?string $errorMessage, |
||
32 | Throwable $previous = null |
||
33 | ) { |
||
34 | $this->propertyName = $propertyName; |
||
35 | $this->propertyFile = $propertyFile; |
||
36 | $this->errorMessage = $errorMessage; |
||
37 | parent::__construct($this->buildMessage(), 0, $previous); |
||
38 | } |
||
66 |