diff options
author | Graham Campbell <graham@mineuk.com> | 2014-12-21 17:00:50 +0000 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-12-22 16:58:09 +0100 |
commit | a542abcf38b95de8e8f01f42b6127e7fffc645a8 (patch) | |
tree | c84aaf43e18f7fc448861b918a5785a117013fb6 /Core/Encoder/BCryptPasswordEncoder.php | |
parent | 3b1993579d11af545a1effd2cb3367665dd5a5fd (diff) | |
download | symfony-security-a542abcf38b95de8e8f01f42b6127e7fffc645a8.zip symfony-security-a542abcf38b95de8e8f01f42b6127e7fffc645a8.tar.gz symfony-security-a542abcf38b95de8e8f01f42b6127e7fffc645a8.tar.bz2 |
[2.3] CS And DocBlock Fixes
Diffstat (limited to 'Core/Encoder/BCryptPasswordEncoder.php')
-rw-r--r-- | Core/Encoder/BCryptPasswordEncoder.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Core/Encoder/BCryptPasswordEncoder.php b/Core/Encoder/BCryptPasswordEncoder.php index f62e8f5..d2b0319 100644 --- a/Core/Encoder/BCryptPasswordEncoder.php +++ b/Core/Encoder/BCryptPasswordEncoder.php @@ -52,6 +52,7 @@ class BCryptPasswordEncoder extends BasePasswordEncoder * It doesn't work with PHP versions lower than 5.3.7, since * the password compat library uses CRYPT_BLOWFISH hash type with * the "$2y$" salt prefix (which is not available in the early PHP versions). + * * @see https://github.com/ircmaxell/password_compat/issues/10#issuecomment-11203833 * * It is almost best to **not** pass a salt and let PHP generate one for you. |