Total Complexity | 1 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | class Version extends \Phalcon\Version |
||
26 | { |
||
27 | /** |
||
28 | * Area where the version number is set. The format is as follows: |
||
29 | * ABBCCDE |
||
30 | * |
||
31 | * A - Major version |
||
32 | * B - Med version (two digits) |
||
33 | * C - Min version (two digits) |
||
34 | * D - Special release: 1 = Alpha, 2 = Beta, 3 = RC, 4 = Stable |
||
35 | * E - Special release version i.e. RC1, Beta2 etc. |
||
36 | */ |
||
37 | 7 | protected static function getVersion() : array |
|
42 |