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