mobilebackend/Twilio/VersionInfo.php

16 lines
234 B
PHP
Raw Normal View History

2020-02-06 10:09:26 +00:00
<?php
namespace Twilio;
class VersionInfo {
const MAJOR = 5;
const MINOR = 22;
const PATCH = 0;
public static function string() {
return implode('.', array(self::MAJOR, self::MINOR, self::PATCH));
}
}