We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cdd365 commit ca7e5d8Copy full SHA for ca7e5d8
src/Illuminate/Support/Facades/RateLimiter.php
@@ -3,6 +3,16 @@
3
namespace Illuminate\Support\Facades;
4
5
/**
6
+ * @method static \Illuminate\Cache\RateLimiter for(string $name, \Closure $callback)
7
+ * @method static \Closure limiter(string $name)
8
+ * @method static bool tooManyAttempts($key, $maxAttempts)
9
+ * @method static int hit($key, $decaySeconds = 60)
10
+ * @method static mixed attempts($key)
11
+ * @method static mixed resetAttempts($key)
12
+ * @method static int retriesLeft($key, $maxAttempts)
13
+ * @method static void clear($key)
14
+ * @method static int availableIn($key)
15
+ *
16
* @see \Illuminate\Cache\RateLimiter
17
*/
18
class RateLimiter extends Facade
0 commit comments