CanResetPassword.php 414B

12345678910111213141516171819202122
  1. <?php
  2. namespace Illuminate\Contracts\Auth;
  3. interface CanResetPassword
  4. {
  5. /**
  6. * Get the e-mail address where password reset links are sent.
  7. *
  8. * @return string
  9. */
  10. public function getEmailForPasswordReset();
  11. /**
  12. * Send the password reset notification.
  13. *
  14. * @param string $token
  15. * @return void
  16. */
  17. public function sendPasswordResetNotification($token);
  18. }