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