blob: 0e012602d9f4d19a43e7dacd38afcdc85d48c262 (
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 = 0;
const PATCH = 2;
public static function string() {
return implode('.', array(self::MAJOR, self::MINOR, self::PATCH));
}
}
|