创建/**<enter>
用于生成 DocBlock 的方法后。它自动填充该函数的@param
and @return
。例子:
/**
*
* @param type $str
* @return type
*/
public function strlen($str){
return strlen($str);
}
如何自定义正在生成的块,以便它也填写@author
并在之后结束/**<enter>
/**
*
* @param type $str
* @return type
* @author John Doe <john@doe.com>
*/
public function strlen($str){
return strlen($str);
}
谢谢