Flag of Ukraine
SymfonyCasts stands united with the people of Ukraine
Next Chapter

Challenge #1 of 1


Q: 

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?

userVoice