Total Complexity | 3 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | final class ClockworkMiddleware implements MiddlewareInterface |
||
14 | { |
||
15 | private Clockwork $clockwork; |
||
16 | |||
17 | public function __construct(Clockwork $clockwork) |
||
18 | { |
||
19 | $this->clockwork = $clockwork; |
||
20 | } |
||
21 | |||
22 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
||
30 | } |
||
31 | } |
||
32 |