blob: d0e1fc740752802fc26d08249c4be437cc904ee3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
namespace Twilio;
class VersionInfo {
const MAJOR = 5;
const MINOR = 4;
const PATCH = 2;
public static function string() {
return implode('.', array(self::MAJOR, self::MINOR, self::PATCH));
}
}
|