You are here

Version.php in Commerce Braintree 7

File

braintree_php/lib/Braintree/Version.php
View source
<?php

/**
 * Braintree Library Version
 *
 * @copyright  2010 Braintree Payment Solutions
 */

/**
 * stores version information about the Braintree library
 *
 *
 * @copyright  2010 Braintree Payment Solutions
 */
final class Braintree_Version {

  /**
   * class constants
   */
  const MAJOR = 2;
  const MINOR = 16;
  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;
  }

}

Classes

Namesort descending Description
Braintree_Version stores version information about the Braintree library