16 lines
234 B
PHP
16 lines
234 B
PHP
|
<?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));
|
||
|
}
|
||
|
}
|