| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | final class InvalidArgumentException extends BaseInvalidArgumentException |
||
| 21 | { |
||
| 22 | 2 | protected function __construct(string $message) |
|
| 23 | { |
||
| 24 | 2 | parent::__construct($message); |
|
| 25 | } |
||
| 26 | |||
| 27 | 1 | public static function invalidReplicaAmount(int $replicas): self |
|
| 30 | } |
||
| 31 | |||
| 32 | 1 | public static function invalidWeight(float $weight): self |
|
| 37 |