Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
||
15 | { |
||
16 | $start = hrtime(true); |
||
17 | $response = $handler->handle($request); |
||
18 | $stop = hrtime(true); |
||
19 | |||
20 | $time = ($stop - $start) / 1000000; |
||
21 | |||
22 | return $response->withHeader('X-Load-Time', $time . ' ms'); |
||
23 | } |
||
24 | } |
||
25 |