| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php declare(strict_types=1); |
||
| 46 | public function __construct( |
||
| 47 | 14 | ReflectionProperty $property, |
|
| 48 | string $message, |
||
| 49 | 14 | int $code = 0, |
|
| 50 | ?Throwable $previous = null |
||
| 51 | 14 | ) { |
|
| 52 | parent::__construct($message, $code, $previous); |
||
| 53 | |||
| 54 | $property->setAccessible(false); |
||
| 55 | $this->property = $property; |
||
| 56 | } |
||
| 78 |