Start your All-Access Pass to unlock this challenge
I've created a custom authenticator and need to check to make sure the user's password
is correct. Here is the authenticate()
method:
public function authenticate(Request $request): PassportInterface
{
$email = $request->request->get('email');
$password = $request->request->get('password');
return new Passport(
new UserBadge($email),
new PasswordCredentials($password)
);
}
Will this correctly validate the user's password?