| Total Complexity | 3 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 11 | final class IndexMapMatchFailedException extends LogicException implements ExceptionInterface |
||
| 12 | { |
||
| 13 | |||
| 14 | private $leftValues; |
||
| 15 | |||
| 16 | private $rightValues; |
||
| 17 | |||
| 18 | 6 | public function __construct( |
|
| 26 | 6 | } |
|
| 27 | |||
| 28 | 1 | public function getLeftValues(): ValueListInterface |
|
| 29 | { |
||
| 30 | 1 | return $this->leftValues; |
|
| 31 | } |
||
| 32 | |||
| 33 | 1 | public function getRightValues(): ValueListInterface |
|
| 36 | } |
||
| 37 | } |
||
| 38 |