Skip to content

Commit 57380b7

Browse files
Fix missing method.
1 parent 46c6fed commit 57380b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Authenticator/CookieAuthenticator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ public function authenticate(ServerRequestInterface $request, ResponseInterface
102102
$credentials = [
103103
'username' => $username
104104
];
105-
$identity = $this->identifiers()->identify($credentials);
105+
$identity = $this->_identifier->identify($credentials);
106106

107107
if (empty($identity)) {
108-
return new Result(null, Result::FAILURE_IDENTITY_NOT_FOUND, $this->identifiers()->getErrors());
108+
return new Result(null, Result::FAILURE_IDENTITY_NOT_FOUND, $this->_identifier->getErrors());
109109
}
110110

111111
if (!$this->_checkToken($identity, $tokenHash)) {

0 commit comments

Comments
 (0)