| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | 1 | public function handleResponse(RequestInterface $request, ResponseInterface $response, callable $next) |
|
| 42 | { |
||
| 43 | 1 | $seconds = microtime(true) - $this->startTime; |
|
| 44 | 1 | $this->logger->log($this->level, sprintf('%sSent "%s %s" in %dms', $this->prefix, $request->getMethod(), $request->getUri(), round($seconds * 1000))); |
|
| 45 | |||
| 46 | 1 | return $next($request, $response); |
|
| 47 | } |
||
| 49 |