Version.php 537 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Soundcloud package version.
  4. *
  5. * @category Services
  6. * @package Services_Soundcloud
  7. * @author Anton Lindqvist <anton@qvister.se>
  8. * @copyright 2010 Anton Lindqvist <anton@qvister.se>
  9. * @license http://www.opensource.org/licenses/mit-license.php MIT
  10. * @link http://github.com/mptre/php-soundcloud
  11. */
  12. class Services_Soundcloud_Version {
  13. const MAJOR = 2;
  14. const MINOR = 1;
  15. const PATCH = 1;
  16. public static function get() {
  17. return implode('.', array(self::MAJOR, self::MINOR, self::PATCH));
  18. }
  19. }