12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace Braintree;
- /**
- * Braintree Library Version
- * stores version information about the Braintree library
- */
- class Version
- {
- /**
- * class constants
- */
- const MAJOR = 3;
- const MINOR = 35;
- const TINY = 0;
- /**
- * @ignore
- * @access protected
- */
- protected function __construct()
- {
- }
- /**
- *
- * @return string the current library version
- */
- public static function get()
- {
- return self::MAJOR . '.' . self::MINOR . '.' . self::TINY;
- }
- }
- class_alias('Braintree\Version', 'Braintree_Version');
|