Files
fusionpbx/core/software/resources/classes/software.php
FusionPBX 9a24c9fa42 Update version to 5.3.3
Major version update. A new branch 5.3 branch created from this point.
2024-09-16 21:44:20 -06:00

31 lines
396 B
PHP

<?php
/**
* software class
*
* @method string version
*/
if (!class_exists('software')) {
class software {
/**
* version
*/
public static function version() {
return '5.3.3';
}
/**
* numeric_version
*/
public static function numeric_version() {
$v = explode('.', software::version());
$n = ($v[0] * 10000 + $v[1] * 100 + $v[2]);
return $n;
}
}
}
?>