| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class RequestNotMatchedException extends LogicException |
||
| 11 | { |
||
| 12 | private ServerRequestInterface $request; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * RequestNotMatchedException constructor. |
||
| 16 | * @param ServerRequestInterface $request |
||
| 17 | */ |
||
| 18 | public function __construct(ServerRequestInterface $request) |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return ServerRequestInterface |
||
| 27 | */ |
||
| 28 | public function getRequest(): ServerRequestInterface |
||
| 31 | } |
||
| 32 | } |