我正在尝试为类中的方法定义一些PHPDoc。我确实有一个参数,应该只包含两个字符串ParameterBuilder::ADD_VALUE
和ParameterBuilder::SET_VALUE
。
/**
* Bla bla bla some information.
*
* @param string $method Use ParameterBuilder::ADD_VALUE to add the param and not overwrite existing ones and
* ParameterBuilder::SET_VALUE to overwrite existing params.
*
* @return ParameterBuilder
*/
我确实希望PHPStorm中的两个参数是可单击的(单击时应转到声明),当前情况并非如此: