File tree Expand file tree Collapse file tree 1 file changed +14
-8
lines changed
src/Illuminate/Support/Facades Expand file tree Collapse file tree 1 file changed +14
-8
lines changed Original file line number Diff line number Diff line change 22
22
class Password extends Facade
23
23
{
24
24
/**
25
- * Constant representing a successfully sent reminder .
25
+ * Constant representing a successfully sent password reset email .
26
26
*
27
27
* @var string
28
28
*/
29
- const RESET_LINK_SENT = PasswordBroker::RESET_LINK_SENT ;
29
+ const ResetLinkSent = PasswordBroker::RESET_LINK_SENT ;
30
30
31
31
/**
32
32
* Constant representing a successfully reset password.
33
33
*
34
34
* @var string
35
35
*/
36
- const PASSWORD_RESET = PasswordBroker::PASSWORD_RESET ;
36
+ const PasswordReset = PasswordBroker::PASSWORD_RESET ;
37
37
38
38
/**
39
- * Constant representing the user not found response .
39
+ * Constant indicating the user could not be found when attempting a password reset .
40
40
*
41
41
* @var string
42
42
*/
43
- const INVALID_USER = PasswordBroker::INVALID_USER ;
43
+ const InvalidUser = PasswordBroker::INVALID_USER ;
44
44
45
45
/**
46
- * Constant representing an invalid token.
46
+ * Constant representing an invalid password reset token.
47
47
*
48
48
* @var string
49
49
*/
50
- const INVALID_TOKEN = PasswordBroker::INVALID_TOKEN ;
50
+ const InvalidToken = PasswordBroker::INVALID_TOKEN ;
51
51
52
52
/**
53
- * Constant representing a throttled reset attempt.
53
+ * Constant representing a throttled password reset attempt.
54
54
*
55
55
* @var string
56
56
*/
57
+ const ResetThrottled = PasswordBroker::RESET_THROTTLED ;
58
+
59
+ const RESET_LINK_SENT = PasswordBroker::RESET_LINK_SENT ;
60
+ const PASSWORD_RESET = PasswordBroker::PASSWORD_RESET ;
61
+ const INVALID_USER = PasswordBroker::INVALID_USER ;
62
+ const INVALID_TOKEN = PasswordBroker::INVALID_TOKEN ;
57
63
const RESET_THROTTLED = PasswordBroker::RESET_THROTTLED ;
58
64
59
65
/**
You can’t perform that action at this time.
0 commit comments