| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class RouterDispatchHandler extends AbstractHandler |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var RouterInterface |
||
| 18 | */ |
||
| 19 | protected $router; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param RouterInterface $router Router instance to be used. |
||
| 23 | */ |
||
| 24 | public function __construct(RouterInterface $router) |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return ResponseInterface |
||
| 31 | */ |
||
| 32 | protected function main(): ResponseInterface |
||
| 39 |