| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 20 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
||
| 21 | { |
||
| 22 | try { |
||
| 23 | return $handler->handle($request); |
||
| 24 | } catch (\Throwable $error) { |
||
| 25 | $this->logger->error($error->getMessage() . '. File: ' . $error->getFile() . ':' . $error->getLine()); |
||
| 26 | |||
| 27 | throw $error; |
||
| 28 | } |
||
| 29 | } |
||
| 30 | } |
||
| 31 |