我正在尝试使用 Restler 3 API Explorer,但遇到了一些问题。即使我在评论中添加了“@param int $n1”,但在 API Explorer 中它会将参数显示为字符串。除此之外,API Explorer 仅在标签“@return”设置为数组时显示“响应信息”。我想知道问题出在 API Explorer、我的代码还是某些配置上。
class Math
{
/**
* Função para somar dois números
*
* teste teste teste
*
* @param int $n1 teste
*
* @return int
*/
function add($n1)
{
return $n1;
}
}
(抱歉英语不好)