| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 3.1406 |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | 10 | final protected function __construct(int $operations, int $interval) |
|
| 16 | { |
||
| 17 | 10 | if ($operations <= 0) { |
|
| 18 | throw new \InvalidArgumentException('Quota must be greater than zero'); |
||
| 19 | } |
||
| 20 | |||
| 21 | 10 | if ($interval <= 0) { |
|
| 22 | throw new \InvalidArgumentException('Seconds interval must be greater than zero'); |
||
| 23 | } |
||
| 24 | |||
| 25 | 10 | $this->operations = $operations; |
|
| 26 | 10 | $this->interval = $interval; |
|
| 27 | 10 | } |
|
| 28 | |||
| 64 |