From 52c77fcbc82e33d5c6e20771f584ab063e21855f Mon Sep 17 00:00:00 2001 From: "Abdallah S. Hassan" <34351131+abdallahshassan@users.noreply.github.com> Date: Fri, 2 Oct 2020 22:10:17 +0200 Subject: [PATCH] add missed RESET_THROTTLED constant to Password Facade (#34641) --- 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. *