Skip to content

Commit

Permalink
Update PasswordResetResult.php
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell authored Dec 19, 2024
1 parent d4f76ad commit eed57b8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Illuminate/Auth/Enums/PasswordResetResult.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,27 @@
enum PasswordResetResult: string
{
/**
* Constant representing a successfully sent reminder.
* Result indicating a successfully sent password reset email.
*/
case ResetLinkSent = 'passwords.sent';

/**
* Constant representing a successfully reset password.
* Result representing a successfully reset password.
*/
case PasswordReset = 'passwords.reset';

/**
* Constant representing the user not found response.
* Result indicating the user is invalid.
*/
case InvalidUser = 'passwords.user';

/**
* Constant representing an invalid token.
* Result indicating the token is invalid.
*/
case InvalidToken = 'passwords.token';

/**
* Constant representing a throttled reset attempt.
* Result indicating the password reset attempt has been throttled.
*/
case Throttled = 'passwords.throttled';
}

0 comments on commit eed57b8

Please sign in to comment.