Skip to content

Commit

Permalink
Merge pull request #321 from hochleitner/php82-string-interpolation
Browse files Browse the repository at this point in the history
Fix deprecated string interpolation syntax
  • Loading branch information
l0gicgate committed Jul 23, 2023
2 parents 8bc1892 + 4a0fcc6 commit b8e079e
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 b8e079e

Please sign in to comment.