| Current Path : /var/www/www.indacotrentino.com/www/vendor/braintree/braintree_php/lib/Braintree/ |
| Current File : //var/www/www.indacotrentino.com/www/vendor/braintree/braintree_php/lib/Braintree/Version.php |
<?php
namespace Braintree;
/**
* Braintree Library Version
* stores version information about the Braintree library
*/
class Version
{
const MAJOR = 6;
const MINOR = 13;
const TINY = 0;
protected function __construct()
{
}
/**
* Get the version
*
* @return string the current library version
*/
public static function get()
{
return self::MAJOR . '.' . self::MINOR . '.' . self::TINY;
}
}