| Total Complexity | 3 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | final class SentryMiddleware implements MiddlewareInterface |
||
| 15 | { |
||
| 16 | private HubInterface $hub; |
||
| 17 | |||
| 18 | public function __construct(HubInterface $hub) |
||
| 19 | { |
||
| 20 | $this->hub = $hub; |
||
| 21 | } |
||
| 22 | |||
| 23 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
||
| 30 | } |
||
| 31 | } |
||
| 33 |