Total Complexity | 2 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | final class ThrowableHandler implements RequestHandlerInterface |
||
13 | { |
||
14 | private Throwable $throwable; |
||
15 | |||
16 | public function __construct(Throwable $throwable) |
||
17 | { |
||
18 | $this->throwable = $throwable; |
||
19 | } |
||
20 | |||
21 | public function handle(ServerRequestInterface $request): ResponseInterface |
||
24 | } |
||
25 | } |
||
26 |