标签: php comments phpstorm
我正在使用PhpStorm和我想在评论部分添加@since 1.0.0的函数。像这样:
@since 1.0.0
/** * some function name details * @since 1.0.0 */ function hard_choice(){ return $blue_pill; }
没有迹象表明如何在PhpStorm文档中获取此信息。
@since
答案 0 :(得分:2)
您可以编辑PHP功能文档注释的文件和代码模板:
这将在您编写函数之前启动PHP-doc块时插入@since标记(例如,通过键入/**[enter])
/**[enter]
/** * @return int * @since 0.1.0 */ public function test() { return 1; }