mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-04 18:29:40 +02:00
31 lines
650 B
PHP
31 lines
650 B
PHP
<?php
|
|
/**
|
|
* Soundcloud package version
|
|
*
|
|
* @category Services
|
|
* @package Services_Soundcloud
|
|
* @author Anton Lindqvist <anton@qvister.se>
|
|
* @copyright 2010 Anton Lindqvist <anton@qvister.se>
|
|
* @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));
|
|
}
|
|
|
|
}
|