Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
l0gicgate committed Jul 23, 2023
2 parents f8cd7d1 + b8e079e commit 6f45c91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -34,7 +34,7 @@
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6.8",
"phpunit/phpunit": "^9.6.9",
"squizlabs/php_codesniffer": "^3.7"
},
"config": {
Expand Down
2 changes: 1 addition & 1 deletion src/Application/Actions/User/ViewUserAction.php
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 6f45c91

Please sign in to comment.