modern-events-calendar-lite/app/api/Twilio/VersionInfo.php

16 lines
254 B
PHP
Raw Permalink Normal View History

2024-10-15 12:04:03 +02:00
<?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));
}
}