MustVerifyEmail.php 506 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Illuminate\Contracts\Auth;
  3. interface MustVerifyEmail
  4. {
  5. /**
  6. * Determine if the user has verified their email address.
  7. *
  8. * @return bool
  9. */
  10. public function hasVerifiedEmail();
  11. /**
  12. * Mark the given user's email as verified.
  13. *
  14. * @return bool
  15. */
  16. public function markEmailAsVerified();
  17. /**
  18. * Send the email verification notification.
  19. *
  20. * @return void
  21. */
  22. public function sendEmailVerificationNotification();
  23. }