We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 822ccce commit df309c9Copy full SHA for df309c9
Hash.php
@@ -28,7 +28,7 @@ class Hash
28
* @return string
29
* - The encrypted password.
30
*/
31
- static public function hash($password)
+ static public function make($password)
32
{
33
// Check if the password exceeds the maximum length
34
if (mb_strlen($password, 'UTF-8') > 72) {
helpers.php
@@ -47,7 +47,7 @@ function PDF()
47
48
function bcrypt($password)
49
50
- return Hash::hash($password);
+ return Hash::make($password);
51
}
52
53
0 commit comments