Skip to content

Commit

Permalink
fix: CS
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentchalamon committed Nov 24, 2023
1 parent 0b959df commit a58a7bb
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*/
final class DocumentationNormalizerTest extends TestCase
{
/**
/**
* @var NormalizerInterface|ObjectProphecy
*/
private $normalizerMock;
Expand Down
2 changes: 1 addition & 1 deletion tests/Controller/GetTokenTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*/
final class GetTokenTest extends TestCase
{
/**
/**
* @var ProviderInterface|ObjectProphecy
*/
private $providerMock;
Expand Down
2 changes: 1 addition & 1 deletion tests/Controller/ResetPasswordTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*/
final class ResetPasswordTest extends TestCase
{
/**
/**
* @var ProviderInterface|ObjectProphecy
*/
private $providerMock;
Expand Down
2 changes: 1 addition & 1 deletion tests/Controller/UpdatePasswordTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*/
final class UpdatePasswordTest extends TestCase
{
/**
/**
* @var ProviderInterface|ObjectProphecy
*/
private $providerMock;
Expand Down
2 changes: 1 addition & 1 deletion tests/EventListener/ExceptionEventListenerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion tests/EventListener/RequestEventListenerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
*/
final class RequestEventListenerTest extends TestCase
{
/**
/**
* @var RequestEventListener
*/
private $listener;
Expand Down
2 changes: 1 addition & 1 deletion tests/Manager/Bridge/DoctrineManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*/
final class DoctrineManagerTest extends TestCase
{
/**
/**
* @var DoctrineManager
*/
private $doctrineManager;
Expand Down
2 changes: 1 addition & 1 deletion tests/Manager/ForgotPasswordManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
*/
final class ForgotPasswordManagerTest extends TestCase
{
/**
/**
* @var ForgotPasswordManager
*/
private $manager;
Expand Down
2 changes: 1 addition & 1 deletion tests/Manager/PasswordTokenManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*/
final class PasswordTokenManagerTest extends TestCase
{
/**
/**
* @var PasswordTokenManager
*/
private $manager;
Expand Down
2 changes: 1 addition & 1 deletion tests/Normalizer/JMSNormalizerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion tests/Normalizer/SymfonyNormalizerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit a58a7bb

Please sign in to comment.