Skip to content

Commit

Permalink
Fixed "ERROR: Using ${var} in strings is deprecated, use {$var} instead"
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoninoM90 authored Apr 1, 2024
1 parent 0ef0154 commit 91becf7
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 91becf7

Please sign in to comment.