Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoninoM90 committed Apr 7, 2024
2 parents abf659a + 91becf7 commit 77975dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Application/Actions/User/ViewUserAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ protected function action(): Response
$userId = (int) $this->resolveArg('id');
$user = $this->userRepository->findUserOfId($userId);

$this->logger->info("User of id `{$userId}` was viewed.");
$this->logger->info("User of id " . $userId . " was viewed.");

return $this->respondWithData($user);
}
Expand Down

0 comments on commit 77975dc

Please sign in to comment.