From 161c03d1beb84d76c44df561b6258a4fabea8beb Mon Sep 17 00:00:00 2001 From: Lo-X Date: Mon, 30 Mar 2015 11:59:54 +0200 Subject: [PATCH] Fixed documentation argument order for DigestAuthenticate::password() --- src/Auth/DigestAuthenticate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Auth/DigestAuthenticate.php b/src/Auth/DigestAuthenticate.php index 2de7b3318cf..fac7ab62994 100644 --- a/src/Auth/DigestAuthenticate.php +++ b/src/Auth/DigestAuthenticate.php @@ -51,7 +51,7 @@ * DigestAuthenticate requires a special password hash that conforms to RFC2617. * You can generate this password using `DigestAuthenticate::password()` * - * `$digestPass = DigestAuthenticate::password($username, env('SERVER_NAME'), $password);` + * `$digestPass = DigestAuthenticate::password($username, $password, env('SERVER_NAME'));` * * If you wish to use digest authentication alongside other authentication methods, * it's recommended that you store the digest authentication separately. For