16 lines
254 B
PHP
16 lines
254 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
namespace Twilio;
|
||
|
|
||
|
|
||
|
class VersionInfo {
|
||
|
const MAJOR = "7";
|
||
|
const MINOR = "2";
|
||
|
const PATCH = "0";
|
||
|
|
||
|
public static function string() {
|
||
|
return implode('.', array(self::MAJOR, self::MINOR, self::PATCH));
|
||
|
}
|
||
|
}
|