Skip to content

Commit

Permalink
Remove PHP_EOL.
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed Jul 31, 2019
1 parent c458c96 commit e43b07b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Server/Middleware/Http/LogRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function __construct(Logger $logger)
public function __invoke(ServerRequestInterface $request, callable $next)
{
$this->logger->info(
\date('Y-m-d H:i:s').' '.$request->getMethod().' '.$request->getUri().PHP_EOL
\date('Y-m-d H:i:s').' '.$request->getMethod().' '.$request->getUri()
);

return $next($request);
Expand Down

0 comments on commit e43b07b

Please sign in to comment.