From ca2ce7c0924c325590b7506b3d830f5b845ab9a8 Mon Sep 17 00:00:00 2001 From: taylorotwell Date: Sun, 25 Feb 2024 14:45:37 +0000 Subject: [PATCH] Update facade docblocks --- src/Illuminate/Support/Facades/RateLimiter.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Illuminate/Support/Facades/RateLimiter.php b/src/Illuminate/Support/Facades/RateLimiter.php index 5ac2e5b36dd0..e8b3ab3fe4f5 100644 --- a/src/Illuminate/Support/Facades/RateLimiter.php +++ b/src/Illuminate/Support/Facades/RateLimiter.php @@ -8,6 +8,7 @@ * @method static mixed attempt(string $key, int $maxAttempts, \Closure $callback, int $decaySeconds = 60) * @method static bool tooManyAttempts(string $key, int $maxAttempts) * @method static int hit(string $key, int $decaySeconds = 60) + * @method static int increment(string $key, int $decaySeconds = 60, int $amount = 1) * @method static mixed attempts(string $key) * @method static mixed resetAttempts(string $key) * @method static int remaining(string $key, int $maxAttempts)