| 1234567891011121314151617 |
- <?php
- namespace Luracast\Restler;
- /**
- * Interface iProvideMultiVersionApi
- * @package Luracast\Restler
- *
- *
- */
- interface iProvideMultiVersionApi
- {
- /**
- * Maximum api version supported by the api class
- * @return int
- */
- public static function __getMaximumSupportedVersion();
- }
|