1 | <?php |
||
16 | final class InMemoryRateLimiter extends AbstractRateLimiter |
||
17 | { |
||
18 | /** |
||
19 | * @var array |
||
20 | */ |
||
21 | protected $store = []; |
||
22 | |||
23 | 10 | protected function get($key, $default) |
|
34 | |||
35 | 10 | protected function init($key) |
|
42 | |||
43 | 1 | protected function increment($key) |
|
47 | |||
48 | 8 | protected function ttl($key) |
|
57 | |||
58 | 10 | private function has($key) |
|
62 | |||
63 | 9 | private function hasExpired($key) |
|
67 | } |
||
68 |