如何在使用PhpStorm时添加@since

时间:2016-12-15 12:16:46

标签: php comments phpstorm

我正在使用PhpStorm和我想在评论部分添加@since 1.0.0的函数。像这样:

/**
 * some function name details
 * @since 1.0.0
 */
 function hard_choice(){
     return $blue_pill;
 }

没有迹象表明如何在PhpStorm文档中获取此信息。

  • 有没有人使用过PhpStorm,并在automatic comment时显示@since
  • 这可以自动化吗?
  • 我在哪里指定跟踪此内容的PhpStorm中的版本号?

1 个答案:

答案 0 :(得分:2)

您可以编辑PHP功能文档注释的文件和代码模板:

enter image description here

这将在您编写函数之前启动PHP-doc块时插入@since标记(例如,通过键入/**[enter]

/**
 * @return int
 * @since 0.1.0
 */
public function test() {
    return 1;
}