Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
10 | final class ReplaceAtNestedPathsException extends LogicException implements ExceptionInterface |
||
11 | { |
||
12 | |||
13 | private $parentPath; |
||
14 | |||
15 | private $nestedPath; |
||
16 | |||
17 | public function __construct(PathInterface $parentPath, PathInterface $nestedPath, Throwable $previous = null) |
||
18 | { |
||
19 | $this->parentPath = $parentPath; |
||
20 | $this->nestedPath = $nestedPath; |
||
21 | parent::__construct("Attempt of replacing value at nested paths", 0, $previous); |
||
22 | } |
||
23 | |||
24 | public function getParentPath(): PathInterface |
||
27 | } |
||
28 | |||
29 | public function getNestedPath(): PathInterface |
||
34 |