getEmailForPasswordToken() public method

public getEmailForPasswordToken ( $token ) : mixed
$token
return mixed
 /**
  * Display the password reset view for the given token.
  *
  * If no token is present, display the link request form.
  *
  * @param  string|null  $token
  * @return \Illuminate\Http\Response
  */
 public function showResetForm($token = null)
 {
     return view('frontend.auth.passwords.reset')->withToken($token)->withEmail($this->user->getEmailForPasswordToken($token));
 }