Skip to content

Commit ebd8fbb

Browse files
committed
Merge branch '4.4' into 5.0
* 4.4: Fix CS Fix CS
2 parents fe044ed + f1e6fce commit ebd8fbb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Tests/DependencyInjection/CompleteConfigurationTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ public function testEncodersWithArgon2i()
424424
],
425425
'JMS\FooBundle\Entity\User7' => [
426426
'class' => $sodium ? SodiumPasswordEncoder::class : NativePasswordEncoder::class,
427-
'arguments' => $sodium ? [256, 1] : [1, 262144, null, \PASSWORD_ARGON2I],
427+
'arguments' => $sodium ? [256, 1] : [1, 262144, null, PASSWORD_ARGON2I],
428428
],
429429
]], $container->getDefinition('security.encoder_factory.generic')->getArguments());
430430
}
@@ -534,7 +534,7 @@ public function testEncodersWithBCrypt()
534534
],
535535
'JMS\FooBundle\Entity\User7' => [
536536
'class' => NativePasswordEncoder::class,
537-
'arguments' => [null, null, 15, \PASSWORD_BCRYPT],
537+
'arguments' => [null, null, 15, PASSWORD_BCRYPT],
538538
],
539539
]], $container->getDefinition('security.encoder_factory.generic')->getArguments());
540540
}

Tests/Functional/AbstractWebTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,6 @@ protected static function createKernel(array $options = []): KernelInterface
6969

7070
protected static function getVarDir()
7171
{
72-
return 'SB'.substr(strrchr(\get_called_class(), '\\'), 1);
72+
return 'SB'.substr(strrchr(static::class, '\\'), 1);
7373
}
7474
}

0 commit comments

Comments
 (0)