diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6483566..c7c3772 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: name: Unit tests strategy: matrix: - php: [ 8.1, 8.2 ] + php: [ 8.1, 8.2, 8.3 ] os: [ ubuntu-latest ] include: - os: [ ubuntu-latest ] diff --git a/CHANGELOG.md b/CHANGELOG.md index ec5dd83..f8a2ffe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.3] 2024-06-04 + +### Added +- Support for Symfony 7 +- Support for PHP 8.3 + +### Removed +- Support for PHP 7.4 + ## [0.10.2] 2023-09-03 ### Fixed diff --git a/tests/TestApplication/config/config.yaml b/tests/TestApplication/config/config.yaml index 6581c29..f134205 100644 --- a/tests/TestApplication/config/config.yaml +++ b/tests/TestApplication/config/config.yaml @@ -54,6 +54,8 @@ services: TestApplication\Controller\TodoContainsAction: tags: ['controller.service_arguments'] + TestApplication\Controller\SimulateExceptionAction: + tags: ['controller.service_arguments'] TestApplication\Filters\TodoContainFilter: autoconfigure: true diff --git a/tests/TestApplication/src/Controller/SimulateExceptionAction.php b/tests/TestApplication/src/Controller/SimulateExceptionAction.php index 0d5ade2..e0a8e4b 100644 --- a/tests/TestApplication/src/Controller/SimulateExceptionAction.php +++ b/tests/TestApplication/src/Controller/SimulateExceptionAction.php @@ -11,7 +11,7 @@ class SimulateExceptionAction /** * Simulate an exception while processing a controller. */ - public function __invoke(EntityManagerInterface $manager, $word) + public function __invoke(EntityManagerInterface $manager) { throw new \Exception('oupsii, it\'s broken ! :D'); }