Skip to content

Commit

Permalink
TASK: Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebobo committed Dec 22, 2020
1 parent 5920c48 commit f6a568f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Classes/Http/Middleware/AddServerTimingMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ class AddServerTimingMiddleware implements MiddlewareInterface
*/
protected $debugService;


public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
{
$response = $handler->handle($request);
Expand All @@ -61,6 +60,6 @@ public function process(ServerRequestInterface $request, RequestHandlerInterface
}
}

return $response->withAddedHeader('Server-Timing', $serverTiming);
return $response->withAddedHeader('Server-Timing', $serverTiming);
}
}

0 comments on commit f6a568f

Please sign in to comment.