Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | public function __construct(RequestMatcherInterface $requestMatcher, int $maxRequests, float $duration, string $storageKey) |
||
38 | { |
||
39 | $this->requestMatcher = $requestMatcher; |
||
40 | $this->maxRequests = $maxRequests; |
||
41 | $this->duration = $duration; |
||
42 | $this->storageKey = $storageKey; |
||
43 | } |
||
44 | |||
77 |