Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/braintree/braintree_php/lib/Braintree/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/braintree/braintree_php/lib/Braintree/Version.php

<?php
namespace Braintree;

/**
 * Braintree Library Version
 * stores version information about the Braintree library
 */
class Version
{
    /**
     * class constants
     */
    const MAJOR = 5;
    const MINOR = 2;
    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;
    }
}