17 lines
300 B
PHP
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();
|
||
|
}
|