We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bff98f commit f38f991Copy full SHA for f38f991
1 file changed
src/Uecode/Bundle/ApiKeyBundle/Security/Authentication/Provider/ApiKeyProvider.php
@@ -44,7 +44,10 @@ public function authenticate(TokenInterface $token)
44
}
45
46
} else {
47
- $this->doAuth($this->userProvider, $token);
+ $result = $this->doAuth($this->userProvider, $token);
48
+ if($result !== false) {
49
+ return $result;
50
+ }
51
52
53
0 commit comments