Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class Semver extends AbstractRule |
||
15 | { |
||
16 | /** |
||
17 | * Check if the given value is a valid version numbers using Semantic Versioning. |
||
18 | * |
||
19 | * @see https://semver.org/ |
||
20 | * @credit <a href="https://github.com/Intervention/validation">Intervention/validation - \Intervention\Validation\Rules\Semver</a> |
||
21 | * |
||
22 | * @param mixed $value |
||
23 | */ |
||
24 | public function check($value): bool |
||
29 |