Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 11 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
29 | View Code Duplication | public static function perMinute(int $limit, Store $store = null): RateLimiterMiddleware |
|
30 | { |
||
31 | $rateLimiter = new RateLimiter( |
||
32 | $limit, |
||
33 | RateLimiter::TIME_FRAME_MINUTE, |
||
34 | $store ?? new InMemoryStore(), |
||
35 | new SleepDeferrer() |
||
36 | ); |
||
37 | |||
38 | return new static($rateLimiter); |
||
39 | } |
||
40 | |||
50 |