From 8433b118bb146bbfa90f2dcaed936650e3cca01e Mon Sep 17 00:00:00 2001 From: Vincent Chalamon <407859+vincentchalamon@users.noreply.github.com> Date: Fri, 24 Nov 2023 14:07:06 +0100 Subject: [PATCH] fix: CS --- .github/workflows/ci.yml | 2 +- .../ApiPlatform/Serializer/DocumentationNormalizerTest.php | 2 +- tests/Controller/GetTokenTest.php | 2 +- tests/Controller/ResetPasswordTest.php | 2 +- tests/Controller/UpdatePasswordTest.php | 2 +- tests/EventListener/ExceptionEventListenerTest.php | 2 +- tests/EventListener/RequestEventListenerTest.php | 2 +- tests/Manager/Bridge/DoctrineManagerTest.php | 2 +- tests/Manager/ForgotPasswordManagerTest.php | 2 +- tests/Manager/PasswordTokenManagerTest.php | 2 +- tests/Normalizer/JMSNormalizerTest.php | 2 +- tests/Normalizer/SymfonyNormalizerTest.php | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 624e1ed..2704aa5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,7 +70,7 @@ jobs: - name: Run php-cs-fixer tests if: matrix.quality env: - # PHP CS Fixer does not support PHP 8.2 yet + # PHP CS Fixer does not support PHP 8.3 yet PHP_CS_FIXER_IGNORE_ENV: 1 run: php-cs-fixer fix --diff --dry-run - name: Run PHPUnit tests diff --git a/tests/Bridge/ApiPlatform/Serializer/DocumentationNormalizerTest.php b/tests/Bridge/ApiPlatform/Serializer/DocumentationNormalizerTest.php index 246b435..32fb4ad 100755 --- a/tests/Bridge/ApiPlatform/Serializer/DocumentationNormalizerTest.php +++ b/tests/Bridge/ApiPlatform/Serializer/DocumentationNormalizerTest.php @@ -28,7 +28,7 @@ */ final class DocumentationNormalizerTest extends TestCase { - /** + /** * @var NormalizerInterface|ObjectProphecy */ private $normalizerMock; diff --git a/tests/Controller/GetTokenTest.php b/tests/Controller/GetTokenTest.php index 68f26c6..183ba59 100755 --- a/tests/Controller/GetTokenTest.php +++ b/tests/Controller/GetTokenTest.php @@ -26,7 +26,7 @@ */ final class GetTokenTest extends TestCase { - /** + /** * @var ProviderInterface|ObjectProphecy */ private $providerMock; diff --git a/tests/Controller/ResetPasswordTest.php b/tests/Controller/ResetPasswordTest.php index df1330e..3500afc 100755 --- a/tests/Controller/ResetPasswordTest.php +++ b/tests/Controller/ResetPasswordTest.php @@ -25,7 +25,7 @@ */ final class ResetPasswordTest extends TestCase { - /** + /** * @var ProviderInterface|ObjectProphecy */ private $providerMock; diff --git a/tests/Controller/UpdatePasswordTest.php b/tests/Controller/UpdatePasswordTest.php index 6fdacdb..c159ad9 100755 --- a/tests/Controller/UpdatePasswordTest.php +++ b/tests/Controller/UpdatePasswordTest.php @@ -26,7 +26,7 @@ */ final class UpdatePasswordTest extends TestCase { - /** + /** * @var ProviderInterface|ObjectProphecy */ private $providerMock; diff --git a/tests/EventListener/ExceptionEventListenerTest.php b/tests/EventListener/ExceptionEventListenerTest.php index add5d30..0dba8b9 100755 --- a/tests/EventListener/ExceptionEventListenerTest.php +++ b/tests/EventListener/ExceptionEventListenerTest.php @@ -25,7 +25,7 @@ */ final class ExceptionEventListenerTest extends TestCase { - public function testOnKernelExceptionInvalid(): void + public function testOnKernelExceptionInvalid(): void { if (class_exists(ExceptionEvent::class)) { $eventMock = $this->createMock(ExceptionEvent::class); diff --git a/tests/EventListener/RequestEventListenerTest.php b/tests/EventListener/RequestEventListenerTest.php index 23642e1..d1b46cb 100755 --- a/tests/EventListener/RequestEventListenerTest.php +++ b/tests/EventListener/RequestEventListenerTest.php @@ -35,7 +35,7 @@ */ final class RequestEventListenerTest extends TestCase { - /** + /** * @var RequestEventListener */ private $listener; diff --git a/tests/Manager/Bridge/DoctrineManagerTest.php b/tests/Manager/Bridge/DoctrineManagerTest.php index 1ab0bf2..10c5863 100755 --- a/tests/Manager/Bridge/DoctrineManagerTest.php +++ b/tests/Manager/Bridge/DoctrineManagerTest.php @@ -24,7 +24,7 @@ */ final class DoctrineManagerTest extends TestCase { - /** + /** * @var DoctrineManager */ private $doctrineManager; diff --git a/tests/Manager/ForgotPasswordManagerTest.php b/tests/Manager/ForgotPasswordManagerTest.php index 1ec02f8..ce90536 100755 --- a/tests/Manager/ForgotPasswordManagerTest.php +++ b/tests/Manager/ForgotPasswordManagerTest.php @@ -34,7 +34,7 @@ */ final class ForgotPasswordManagerTest extends TestCase { - /** + /** * @var ForgotPasswordManager */ private $manager; diff --git a/tests/Manager/PasswordTokenManagerTest.php b/tests/Manager/PasswordTokenManagerTest.php index b965da9..915f2c9 100755 --- a/tests/Manager/PasswordTokenManagerTest.php +++ b/tests/Manager/PasswordTokenManagerTest.php @@ -26,7 +26,7 @@ */ final class PasswordTokenManagerTest extends TestCase { - /** + /** * @var PasswordTokenManager */ private $manager; diff --git a/tests/Normalizer/JMSNormalizerTest.php b/tests/Normalizer/JMSNormalizerTest.php index f93481e..c67ff60 100644 --- a/tests/Normalizer/JMSNormalizerTest.php +++ b/tests/Normalizer/JMSNormalizerTest.php @@ -23,7 +23,7 @@ */ final class JMSNormalizerTest extends TestCase { - public function testNormalize(): void + public function testNormalize(): void { $normalizerMock = $this->createMock(ArrayTransformerInterface::class); $passwordTokenMock = $this->createMock(AbstractPasswordToken::class); diff --git a/tests/Normalizer/SymfonyNormalizerTest.php b/tests/Normalizer/SymfonyNormalizerTest.php index 953f2aa..3cba135 100644 --- a/tests/Normalizer/SymfonyNormalizerTest.php +++ b/tests/Normalizer/SymfonyNormalizerTest.php @@ -23,7 +23,7 @@ */ final class SymfonyNormalizerTest extends TestCase { - public function testNormalize(): void + public function testNormalize(): void { $normalizerMock = $this->createMock(NormalizerInterface::class); $passwordTokenMock = $this->createMock(AbstractPasswordToken::class);