| Current Path : /home/rtorresani/www/vendor/braintree/braintree_php/lib/Braintree/ |
| Current File : //home/rtorresani/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 = 11;
const TINY = 1;
protected function __construct()
{
}
/**
* Get the version
*
* @return string the current library version
*/
public static function get()
{
return self::MAJOR . '.' . self::MINOR . '.' . self::TINY;
}
}