| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | public function __construct( |
||
| 20 | string $propertyName, |
||
| 21 | string $propertyFile, |
||
| 22 | ?string $errorMessage, |
||
| 23 | Throwable $previous = null |
||
| 24 | ) { |
||
| 25 | $this->propertyName = $propertyName; |
||
| 26 | $this->propertyFile = $propertyFile; |
||
| 27 | $this->errorMessage = $errorMessage; |
||
| 28 | parent::__construct($this->buildMessage(), 0, $previous); |
||
| 29 | } |
||
| 52 |