我的源代码使用 PHP_CodeSniffer 生成以下错误。“var &$myVar 的文档注释与位置 2 处的实际变量名称 $myVar 不匹配”
PEAR.Commenting.FunctionComment.ParamNameNoMatch
编码:
/**
* Function comment
*
* @param object $newVar some comment
* @param array &$myVar some comment
*
* @return null
*/
private function _myFunction($newVar, &$myVar) {
// my code here...
}
可能是什么原因?