Commit 33ca13e4 by Alexander Makarov

fixed method name

parent d735520f
...@@ -186,7 +186,7 @@ class SecurityHelper ...@@ -186,7 +186,7 @@ class SecurityHelper
* // ...save $hash in database... * // ...save $hash in database...
* *
* // during login, validate if the password entered is correct using $hash fetched from database * // during login, validate if the password entered is correct using $hash fetched from database
* if (SecurityHelper::verifyPassword($password, $hash) { * if (SecurityHelper::validatePassword($password, $hash) {
* // password is good * // password is good
* } else { * } else {
* // password is bad * // password is bad
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment