Skip to content

Commit 24ed489

Browse files
committed
Apply fixes from StyleCI
1 parent bf47eb5 commit 24ed489

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LoggerPlugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ protected function doHandleRequest(RequestInterface $request, callable $next, ca
5050

5151
return $response;
5252
}, function (Exception $exception) use ($request, $start, $uid) {
53-
$milliseconds = (int) round((hrtime(true) / 1E6 - $start));
53+
$milliseconds = (int) round(hrtime(true) / 1E6 - $start);
5454
if ($exception instanceof Exception\HttpException) {
5555
$formattedResponse = method_exists($this->formatter, 'formatResponseForRequest')
5656
? $this->formatter->formatResponseForRequest($exception->getResponse(), $exception->getRequest())

0 commit comments

Comments
 (0)