File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
<?php
namespace Braintree;
/**
* Braintree Library Version
* stores version information about the Braintree library
*/
class Version
{
/**
* class constants
*/
const MAJOR = 3;
const MINOR = 40;
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');
