Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | class Version { |
||
20 | |||
21 | const MAJOR = '0'; //!< Major release number. |
||
22 | const MINOR = '9'; //!< Minor release number. |
||
23 | const MAINTENANCE = '2'; //!< Maintenance release number (bug fixes only). |
||
24 | |||
25 | |||
26 | /** |
||
27 | * @brief Returns the version number as string. |
||
28 | * @return string The version number. |
||
29 | */ |
||
30 | public static function getNumber() { |
||
34 | } |