| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | final class UndefinedPropertyException extends InvalidArgumentException |
||
| 10 | { |
||
| 11 | 7 | private function __construct(string $message) |
|
| 12 | { |
||
| 13 | 7 | parent::__construct($message); |
|
| 14 | } |
||
| 15 | |||
| 16 | 6 | public static function forUndefinedProperty(string $property): self |
|
| 19 | } |
||
| 20 | |||
| 21 | 1 | public static function forNotNestedProperty(string $property): self |
|
| 24 | } |
||
| 25 | } |
||
| 26 |