Files
fusionpbx/core/software/resources/classes/software.php
FusionPBX e3733381eb Update the version of the Master Branch
This is not a release yet it's a version for the Master Branch. We are doing this to separate it from the current release.
2024-03-01 18:35:27 -07: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.0';
}
/**
* numeric_version
*/
public static function numeric_version() {
$v = explode('.', software::version());
$n = ($v[0] * 10000 + $v[1] * 100 + $v[2]);
return $n;
}
}
}
?>