Skip to content

Commit f1e6fce

Browse files
committed
Fix CS
1 parent 56671ce commit f1e6fce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/DependencyInjection/CompleteConfigurationTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ public function testEncodersWithArgon2i()
432432
],
433433
'JMS\FooBundle\Entity\User7' => [
434434
'class' => $sodium ? SodiumPasswordEncoder::class : NativePasswordEncoder::class,
435-
'arguments' => $sodium ? [256, 1] : [1, 262144, null, \PASSWORD_ARGON2I],
435+
'arguments' => $sodium ? [256, 1] : [1, 262144, null, PASSWORD_ARGON2I],
436436
],
437437
]], $container->getDefinition('security.encoder_factory.generic')->getArguments());
438438
}
@@ -547,7 +547,7 @@ public function testEncodersWithBCrypt()
547547
],
548548
'JMS\FooBundle\Entity\User7' => [
549549
'class' => NativePasswordEncoder::class,
550-
'arguments' => [null, null, 15, \PASSWORD_BCRYPT],
550+
'arguments' => [null, null, 15, PASSWORD_BCRYPT],
551551
],
552552
]], $container->getDefinition('security.encoder_factory.generic')->getArguments());
553553
}

0 commit comments

Comments
 (0)