Skip to content

Commit 85e59bb

Browse files
authored
minor #331 [ci] php-cs-fixer it up
1 parent 13b3466 commit 85e59bb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/Fixtures/App/src/Controller/ResetPasswordController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class ResetPasswordController extends AbstractController
3434

3535
public function __construct(
3636
private ResetPasswordHelperInterface $resetPasswordHelper,
37-
private EntityManagerInterface $entityManager
37+
private EntityManagerInterface $entityManager,
3838
) {
3939
}
4040

tests/Fixtures/ResetPasswordTestFixtureRequestRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function createResetPasswordRequest(
3737
object $user,
3838
\DateTimeInterface $expiresAt,
3939
string $selector,
40-
string $hashedToken
40+
string $hashedToken,
4141
): ResetPasswordRequestInterface {
4242
}
4343
}

tests/UnitTests/Persistence/ResetPasswordRequestRepositoryTraitTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function createResetPasswordRequest(
2929
object $user,
3030
\DateTimeInterface $expiresAt,
3131
string $selector,
32-
string $hashedToken
32+
string $hashedToken,
3333
): ResetPasswordRequestInterface {
3434
}
3535
};

0 commit comments

Comments
 (0)