improve PlaintextPasswordEncoder docBlock summary

This commit is contained in:
Jesse Rushlow 2020-03-03 08:15:33 -05:00 committed by Fabien Potencier
parent 3a8da96b74
commit a56d262639
1 changed files with 3 additions and 1 deletions

View File

@ -14,7 +14,9 @@ namespace Symfony\Component\Security\Core\Encoder;
use Symfony\Component\Security\Core\Exception\BadCredentialsException;
/**
* PlaintextPasswordEncoder does not do any encoding.
* PlaintextPasswordEncoder does not do any encoding but is useful in testing environments.
*
* As this encoder is not cryptographically secure, usage of it in production environments is not recommended.
*
* @author Fabien Potencier <fabien@symfony.com>
*/