Skip to content

Commit

Permalink
Fix DigestAuthenticate test
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienbarre committed Nov 1, 2014
1 parent 544ddac commit 417c137
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/Cake/Controller/Component/Auth/DigestAuthenticate.php
Expand Up @@ -60,6 +60,7 @@ class DigestAuthenticate extends BasicAuthenticate {
*
* - `fields` The fields to use to identify a user by.
* - `userModel` The model name of the User, defaults to User.
* - `userFields` Array of fields to retrieve from User model, null to retrieve all. Defaults to null.
* - `scope` Additional conditions to use when looking up and authenticating users,
* i.e. `array('User.is_active' => 1).`
* - `recursive` The value of the recursive key passed to find(). Defaults to 0.
Expand All @@ -78,6 +79,7 @@ class DigestAuthenticate extends BasicAuthenticate {
'password' => 'password'
),
'userModel' => 'User',
'userFields' => null,
'scope' => array(),
'recursive' => 0,
'contain' => null,
Expand Down

0 comments on commit 417c137

Please sign in to comment.