1 | <?php |
||
21 | class Api |
||
22 | { |
||
23 | protected static $version = '1.1.0'; |
||
24 | |||
25 | /** |
||
26 | * This method will returns the current |
||
27 | * API version, the API version will be |
||
28 | * updated by following the semantic versioning |
||
29 | * based on changes of: |
||
30 | * - ExtendedCacheItemPoolInterface |
||
31 | * - ExtendedCacheItemInterface |
||
32 | * |
||
33 | * @see http://semver.org/ |
||
34 | * @return string |
||
35 | */ |
||
36 | public static function getVersion() |
||
40 | |||
41 | /** |
||
42 | * Return the API changelog, as a string. |
||
43 | * @return string |
||
44 | */ |
||
45 | public static function getChangelog() |
||
58 | } |