Your IP : 216.73.216.95


Current Path : /var/www/alh/system/storage/vendor/braintree/braintree_php/lib/Braintree/
Upload File :
Current File : /var/www/alh/system/storage/vendor/braintree/braintree_php/lib/Braintree/Version.php

<?php
/**
 * Braintree Library Version
 * stores version information about the Braintree library
 *
 * @copyright  2014 Braintree, a division of PayPal, Inc.
 */
final class Braintree_Version
{
    /**
     * class constants
     */
    const MAJOR = 3;
    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;
    }
}