Skip to content

Commit

Permalink
FIX Member handler should be checked last (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
robbieaverill authored and chillu committed Feb 8, 2017
1 parent e34daee commit 81bc80a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Auth/Handler.php
Expand Up @@ -32,11 +32,11 @@ class Handler
private static $authenticators = [
[
'class' => MemberAuthenticator::class,
'priority' => 20,
'priority' => 10,
],
[
'class' => BasicAuthAuthenticator::class,
'priority' => 10,
'priority' => 20,
]
];

Expand Down

0 comments on commit 81bc80a

Please sign in to comment.