version fix

This commit is contained in:
2024-12-18 15:24:25 +03:00
parent aa913293ef
commit a0a99de862
6 changed files with 59 additions and 12 deletions

View File

@ -0,0 +1,16 @@
<?php
namespace kernel\helpers;
class Version
{
public static function getIntVersionByString(string $version): int
{
$version = preg_replace('/[^0-9]+/', '', $version);
return match (strlen($version)) {
1 => intval($version) * 100,
2 => intval($version) * 10,
3 => intval($version),
};
}
}