Skip to content

Commit f8bebde

Browse files
committed
[Security] Fix some broken BC layers
1 parent 8574dfe commit f8bebde

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Encoder/UserPasswordEncoderInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111

1212
namespace Symfony\Component\Security\Core\Encoder;
1313

14-
trigger_deprecation('symfony/security-core', '5.3', sprintf('The "%s" interface is deprecated, use "%s" on hasher implementations that deal with salts instead.', UserPasswordEncoderInterface::class, UserPasswordHasherInterface::class));
14+
trigger_deprecation('symfony/security-core', '5.3', sprintf('The "%s" interface is deprecated, use "%s" instead.', UserPasswordEncoderInterface::class, UserPasswordHasherInterface::class));
1515

16-
use Symfony\Component\Security\Core\User\UserInterface;
1716
use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
17+
use Symfony\Component\Security\Core\User\UserInterface;
1818

1919
/**
2020
* UserPasswordEncoderInterface is the interface for the password encoder service.

0 commit comments

Comments
 (0)