* @copyright 2010 Anton Lindqvist * @license http://www.opensource.org/licenses/mit-license.php MIT * @link http://github.com/mptre/php-soundcloud */ class Services_Soundcloud_Version { const MAJOR = 2; const MINOR = 3; const PATCH = 2; /** * Magic to string method * * @return string * * @access public */ function __toString() { return implode('.', array(self::MAJOR, self::MINOR, self::PATCH)); } }