Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2.032 |
Changes | 0 |
1 | <?php |
||
24 | /** |
||
25 | * @throws InvalidVersion |
||
26 | */ |
||
27 | abstract protected function validate(string $identifier): void; |
||
28 | |||
29 | 8 | public static function from(string $identifier, string ...$identifiers) |
|
30 | { |
||
31 | 8 | return new static($identifier, ...$identifiers); |
|
32 | } |
||
33 | |||
34 | 30 | public static function fromString(string $extension) |
|
54 |