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
Authenticatable.php
46 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWPSCOPED\Illuminate\Contracts\Auth; |
| 4 | |
| 5 | /** @internal */ |
| 6 | interface Authenticatable |
| 7 | { |
| 8 | /** |
| 9 | * Get the name of the unique identifier for the user. |
| 10 | * |
| 11 | * @return string |
| 12 | */ |
| 13 | public function getAuthIdentifierName(); |
| 14 | /** |
| 15 | * Get the unique identifier for the user. |
| 16 | * |
| 17 | * @return mixed |
| 18 | */ |
| 19 | public function getAuthIdentifier(); |
| 20 | /** |
| 21 | * Get the password for the user. |
| 22 | * |
| 23 | * @return string |
| 24 | */ |
| 25 | public function getAuthPassword(); |
| 26 | /** |
| 27 | * Get the token value for the "remember me" session. |
| 28 | * |
| 29 | * @return string |
| 30 | */ |
| 31 | public function getRememberToken(); |
| 32 | /** |
| 33 | * Set the token value for the "remember me" session. |
| 34 | * |
| 35 | * @param string $value |
| 36 | * @return void |
| 37 | */ |
| 38 | public function setRememberToken($value); |
| 39 | /** |
| 40 | * Get the column name for the "remember me" token. |
| 41 | * |
| 42 | * @return string |
| 43 | */ |
| 44 | public function getRememberTokenName(); |
| 45 | } |
| 46 |