Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | public function __construct(string $className, string $propertyName, Error $previous = null) |
||
25 | { |
||
26 | parent::__construct( |
||
27 | 'Trying to read the property '.$className.'::'.$propertyName.' which is not yet initialized. Maybe you have forgot to call the setter or define a default value on the property declaration ?', |
||
28 | 0, $previous |
||
29 | ); |
||
32 |