0

我正在尝试使用 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;
    }
  }

(抱歉英语不好)

4

1 回答 1

0

这应该在 Restler 3 RC4 和最新的 Restler API Explorer 中按预期工作

于 2013-08-29T11:19:23.303 回答