Skip to content

Commit

Permalink
Fixed documentation argument order for DigestAuthenticate::password()
Browse files Browse the repository at this point in the history
  • Loading branch information
lazybobcat committed Mar 30, 2015
1 parent 15dc559 commit 161c03d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Auth/DigestAuthenticate.php
Expand Up @@ -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
Expand Down

0 comments on commit 161c03d

Please sign in to comment.