From 91becf71459ee295cd7503401464e4c66b0ab34c Mon Sep 17 00:00:00 2001 From: "Antonino M. (@AntoninoM90)" <45453064+AntoninoM90@users.noreply.github.com> Date: Mon, 1 Apr 2024 23:58:58 +0200 Subject: [PATCH] Fixed "ERROR: Using ${var} in strings is deprecated, use {$var} instead" --- src/Application/Actions/User/ViewUserAction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application/Actions/User/ViewUserAction.php b/src/Application/Actions/User/ViewUserAction.php index e18e9fcd0..9b46aa196 100644 --- a/src/Application/Actions/User/ViewUserAction.php +++ b/src/Application/Actions/User/ViewUserAction.php @@ -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); }