From 5d3d4059e2e53927ab26e03f6e7c7c1243b4a20b Mon Sep 17 00:00:00 2001 From: Wolfgang Hochleitner Date: Tue, 30 May 2023 00:20:05 +0200 Subject: [PATCH 1/2] Fix deprecated string interpolation syntax Switch to a non-deprecated string interpolation syntax for PHP 8.2. --- 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 711cf0aa..e18e9fcd 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); } From ac01c96b6c443da4d230035a421bc9940eaf840d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Jul 2023 16:21:18 +0000 Subject: [PATCH 2/2] Update phpunit/phpunit requirement from ^9.6.8 to ^9.6.9 Updates the requirements on [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) to permit the latest version. - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/9.6.9/ChangeLog-9.6.md) - [Commits](https://github.com/sebastianbergmann/phpunit/compare/9.6.8...9.6.9) --- updated-dependencies: - dependency-name: phpunit/phpunit dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index ac151407..6ddbb399 100644 --- a/composer.json +++ b/composer.json @@ -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": {