From 0d7f3e70591b8da33cf43d1ef20fc6c09404584f Mon Sep 17 00:00:00 2001 From: "Abdallah S. Hassan" Date: Fri, 2 Oct 2020 22:03:23 +0200 Subject: [PATCH] add missed RESET_THROTTLED constant to Password Facade --- src/Illuminate/Support/Facades/Password.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Illuminate/Support/Facades/Password.php b/src/Illuminate/Support/Facades/Password.php index 228b588827d5..864b5e987dde 100755 --- a/src/Illuminate/Support/Facades/Password.php +++ b/src/Illuminate/Support/Facades/Password.php @@ -40,6 +40,13 @@ class Password extends Facade */ const INVALID_TOKEN = PasswordBroker::INVALID_TOKEN; + /** + * Constant representing a throttled reset attempt. + * + * @var string + */ + const RESET_THROTTLED = PasswordBroker::RESET_THROTTLED; + /** * Get the registered name of the component. *