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