2024-09-06 20:28:06 +08:00

17 lines
300 B
PHP

<?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();
}