| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class InvalidMatcherKeyException extends DomainException implements ExceptionInterface |
||
| 11 | { |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var mixed |
||
| 15 | */ |
||
| 16 | private $matcherKey; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * InvalidMatcherKeyException constructor. |
||
| 20 | * |
||
| 21 | * @param mixed $matcherKey |
||
| 22 | * @param Throwable|null $previous |
||
| 23 | */ |
||
| 24 | 5 | public function __construct($matcherKey, Throwable $previous = null) |
|
| 28 | 5 | } |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @return mixed |
||
| 32 | * @psalm-pure |
||
| 33 | */ |
||
| 34 | 1 | public function getMatcherKey() |
|
| 39 |