15 lines
254 B
PHP
Executable file
15 lines
254 B
PHP
Executable file
<?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));
|
|
}
|
|
}
|