1 | <?php |
||
9 | final class RedisRateLimiter extends AbstractTTLRateLimiter |
||
10 | { |
||
11 | /** @var Redis */ |
||
12 | private $redis; |
||
13 | |||
14 | public function __construct(Redis $predis, string $keyPrefix = '') |
||
24 | 2 | ||
25 | protected function getCurrent(string $key): int |
||
29 | |||
30 | 2 | protected function updateCounter(string $key, int $interval): int |
|
40 | |||
41 | 3 | protected function ttl(string $key): int |
|
45 | } |
||
46 |