Total Complexity | 2 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | final class PropertyNotSupportNestedValuesException extends ValueNotFoundException |
||
8 | { |
||
9 | public function __construct(string $property, private mixed $value) |
||
10 | { |
||
11 | parent::__construct('Property "' . $property . '" is not a nested attribute.'); |
||
12 | } |
||
13 | |||
14 | public function getValue(): mixed |
||
17 | } |
||
18 | } |
||
19 |