login consent app sql
This commit is contained in:
28
vendor/symfony/security-core/Encoder/SelfSaltingEncoderInterface.php
vendored
Normal file
28
vendor/symfony/security-core/Encoder/SelfSaltingEncoderInterface.php
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Component\Security\Core\Encoder;
|
||||
|
||||
use Symfony\Component\PasswordHasher\LegacyPasswordHasherInterface;
|
||||
|
||||
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);
|
||||
|
||||
/**
|
||||
* SelfSaltingEncoderInterface is a marker interface for encoders that do not
|
||||
* require a user-generated salt.
|
||||
*
|
||||
* @author Zan Baldwin <hello@zanbaldwin.com>
|
||||
*
|
||||
* @deprecated since Symfony 5.3, use {@link LegacyPasswordHasherInterface} instead
|
||||
*/
|
||||
interface SelfSaltingEncoderInterface
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user