Restler 3 API Explorer中的问题

时间:2013-08-21 20:18:01

标签: php api restler

我正在尝试使用Restler 3 API Explorer,但我遇到了一些问题。即使我在评论中加上“@param int $ n1”,它也会在API资源管理器中将参数显示为字符串。除此之外,当标记“@return”设置为数组时,API Explorer仅显示“响应信息”。我想知道问题出在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;
    }
  }

(抱歉英语不好)

1 个答案:

答案 0 :(得分:0)

这应该在Restler 3 RC4和最新的Restler API Explorer

中按预期工作