| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 50 | 9 | public function __construct |
|
| 51 | ( |
||
| 52 | string $class, |
||
| 53 | string $property, |
||
| 54 | Throwable $previous = null |
||
| 55 | ) |
||
| 56 | { |
||
| 57 | 9 | parent::__construct |
|
| 58 | ( |
||
| 59 | 9 | 'Cannot ' . static::ACCESS_TYPE . ' property: ' |
|
| 60 | 9 | . $class . '::$' . $property . '. ' . static::ERROR_REASON, |
|
| 61 | 9 | 0, |
|
| 62 | 9 | $previous |
|
| 63 | ); |
||
| 64 | 9 | } |
|
| 65 | } |
||
| 66 |