From 85e59bb6dcf7904f4febc6a2cad1337ab2e1ba3c Mon Sep 17 00:00:00 2001 From: Jesse Rushlow <40327885+jrushlow@users.noreply.github.com> Date: Sat, 31 Aug 2024 08:26:31 -0400 Subject: [PATCH] minor #331 [ci] php-cs-fixer it up --- tests/Fixtures/App/src/Controller/ResetPasswordController.php | 2 +- tests/Fixtures/ResetPasswordTestFixtureRequestRepository.php | 2 +- .../Persistence/ResetPasswordRequestRepositoryTraitTest.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Fixtures/App/src/Controller/ResetPasswordController.php b/tests/Fixtures/App/src/Controller/ResetPasswordController.php index fe6a5d17..d204a255 100644 --- a/tests/Fixtures/App/src/Controller/ResetPasswordController.php +++ b/tests/Fixtures/App/src/Controller/ResetPasswordController.php @@ -34,7 +34,7 @@ class ResetPasswordController extends AbstractController public function __construct( private ResetPasswordHelperInterface $resetPasswordHelper, - private EntityManagerInterface $entityManager + private EntityManagerInterface $entityManager, ) { } diff --git a/tests/Fixtures/ResetPasswordTestFixtureRequestRepository.php b/tests/Fixtures/ResetPasswordTestFixtureRequestRepository.php index e026a471..1d80d93b 100644 --- a/tests/Fixtures/ResetPasswordTestFixtureRequestRepository.php +++ b/tests/Fixtures/ResetPasswordTestFixtureRequestRepository.php @@ -37,7 +37,7 @@ public function createResetPasswordRequest( object $user, \DateTimeInterface $expiresAt, string $selector, - string $hashedToken + string $hashedToken, ): ResetPasswordRequestInterface { } } diff --git a/tests/UnitTests/Persistence/ResetPasswordRequestRepositoryTraitTest.php b/tests/UnitTests/Persistence/ResetPasswordRequestRepositoryTraitTest.php index a62375e9..35a5f3a8 100644 --- a/tests/UnitTests/Persistence/ResetPasswordRequestRepositoryTraitTest.php +++ b/tests/UnitTests/Persistence/ResetPasswordRequestRepositoryTraitTest.php @@ -29,7 +29,7 @@ public function createResetPasswordRequest( object $user, \DateTimeInterface $expiresAt, string $selector, - string $hashedToken + string $hashedToken, ): ResetPasswordRequestInterface { } };