vendor/symfony/security-core/Encoder/SelfSaltingEncoderInterface.php line 16

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <[email protected]>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Security\Core\Encoder;
  11. use Symfony\Component\PasswordHasher\LegacyPasswordHasherInterface;
  12. trigger_deprecation('symfony/security-core''5.3''The "%s" interface is deprecated, use "%s" on hasher implementations that deal with salts instead.'SelfSaltingEncoderInterface::class, LegacyPasswordHasherInterface::class);
  13. /**
  14.  * SelfSaltingEncoderInterface is a marker interface for encoders that do not
  15.  * require a user-generated salt.
  16.  *
  17.  * @author Zan Baldwin <[email protected]>
  18.  *
  19.  * @deprecated since Symfony 5.3, use {@link LegacyPasswordHasherInterface} instead
  20.  */
  21. interface SelfSaltingEncoderInterface
  22. {
  23. }