1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14:
<?php
namespace Angelfon\SDK;
class VersionInfo {
const MAJOR = 1;
const MINOR = 1;
const PATCH = 0;
/**
* @return string A friendly representation of the version number
*/
public static function string() {
return implode('.', array(self::MAJOR, self::MINOR, self::PATCH));
}
}