From 3bffcf14df0551483c8001e522472a6f0849debc Mon Sep 17 00:00:00 2001 From: taylorotwell Date: Sun, 25 Feb 2024 14:45:37 +0000 Subject: [PATCH] Update facade docblocks --- Facades/RateLimiter.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Facades/RateLimiter.php b/Facades/RateLimiter.php index 5ac2e5b3..e8b3ab3f 100644 --- a/Facades/RateLimiter.php +++ b/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)