Access
2 years ago
Middleware
2 years ago
Authenticatable.php
2 years ago
CanResetPassword.php
2 years ago
Factory.php
2 years ago
Guard.php
1 month ago
MustVerifyEmail.php
2 years ago
PasswordBroker.php
2 years ago
PasswordBrokerFactory.php
1 month ago
StatefulGuard.php
2 years ago
SupportsBasicAuth.php
2 years ago
UserProvider.php
2 years ago
MustVerifyEmail.php
33 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWPSCOPED\Illuminate\Contracts\Auth; |
| 4 | |
| 5 | /** @internal */ |
| 6 | interface MustVerifyEmail |
| 7 | { |
| 8 | /** |
| 9 | * Determine if the user has verified their email address. |
| 10 | * |
| 11 | * @return bool |
| 12 | */ |
| 13 | public function hasVerifiedEmail(); |
| 14 | /** |
| 15 | * Mark the given user's email as verified. |
| 16 | * |
| 17 | * @return bool |
| 18 | */ |
| 19 | public function markEmailAsVerified(); |
| 20 | /** |
| 21 | * Send the email verification notification. |
| 22 | * |
| 23 | * @return void |
| 24 | */ |
| 25 | public function sendEmailVerificationNotification(); |
| 26 | /** |
| 27 | * Get the email address that should be used for verification. |
| 28 | * |
| 29 | * @return string |
| 30 | */ |
| 31 | public function getEmailForVerification(); |
| 32 | } |
| 33 |