iProvideMultiVersionApi.php 300 B

1234567891011121314151617
  1. <?php
  2. namespace Luracast\Restler;
  3. /**
  4. * Interface iProvideMultiVersionApi
  5. * @package Luracast\Restler
  6. *
  7. *
  8. */
  9. interface iProvideMultiVersionApi
  10. {
  11. /**
  12. * Maximum api version supported by the api class
  13. * @return int
  14. */
  15. public static function __getMaximumSupportedVersion();
  16. }