| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 11 | final class ReplaceAtNestedPathsException extends LogicException implements ExceptionInterface |
||
| 12 | { |
||
| 13 | |||
| 14 | private $parentPath; |
||
| 15 | |||
| 16 | private $nestedPath; |
||
| 17 | |||
| 18 | 6 | public function __construct(PathInterface $parentPath, PathInterface $nestedPath, Throwable $previous = null) |
|
| 23 | 6 | } |
|
| 24 | |||
| 25 | 1 | public function getParentPath(): PathInterface |
|
| 28 | } |
||
| 29 | |||
| 30 | 1 | public function getNestedPath(): PathInterface |
|
| 35 |