| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 30 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
||
| 31 | { |
||
| 32 | try { |
||
| 33 | return $handler->handle($request); |
||
| 34 | } catch (\Throwable $error) { |
||
| 35 | $this->logger->error($error->getMessage() . '. File: ' . $error->getFile() . ':' . $error->getLine()); |
||
| 36 | |||
| 37 | throw $error; |
||
| 38 | } |
||
| 39 | } |
||
| 40 | } |
||
| 41 |