http://www.phpfastcache.com * @author Georges.L (Geolim4) * */ namespace phpFastCache; /** * Class Api * @package phpFastCache */ class Api { protected static $version = '1.1.3'; /** * This method will returns the current * API version, the API version will be * updated by following the semantic versioning * based on changes of: * - ExtendedCacheItemPoolInterface * - ExtendedCacheItemInterface * * @see http://semver.org/ * @return string */ public static function getVersion() { return self::$version; } /** * Return the API changelog, as a string. * @return string */ public static function getChangelog() { return <<