| 1 | <?php |
||
| 14 | trait ValidateVersion |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * Validates and filters the version number |
||
| 18 | * |
||
| 19 | * @param string $version The version string to validate. |
||
| 20 | * |
||
| 21 | * @return string|boolean A validated version number on success or boolean false. |
||
| 22 | */ |
||
| 23 | 4 | protected function validateVersionNumber(string $version) |
|
| 27 | } |
||
| 28 |