php代码嗅探器中的@param标签对齐
我正在使用 php 代码嗅探器作为函数,我想添加 @param 标签,但它给了我第一个和第二个参数的对齐错误。
/**
* for generating thumbnail
*
* @param int $minSize an integer to size of thumbnail
* @param string $sourceUrl the string to source url
*
* @return int the integer
*/
function imgThumbs($minSize, $sourceUrl)
{
}
请提出建议,为什么不显示是什么问题,第一个和第二个未对齐。
I am using php code sniffer for a function, i want to add @param tag but it is giving me alignment error of first and second param.
/**
* for generating thumbnail
*
* @param int $minSize an integer to size of thumbnail
* @param string $sourceUrl the string to source url
*
* @return int the integer
*/
function imgThumbs($minSize, $sourceUrl)
{
}
please suggest, what is the problem why it is not showing , first and second are not aligned.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在代码中,最长变量名称
$sourceUrl
后跟有 2 个空格。编辑:它应该如何工作(至少这个错误应该消失)。我在重要的地方用了点来表示空间。
In your code the longest variable name
$sourceUrl
is followed by 2 spaces.Edit: Here is how it should work (at least this error should disappear). I used dots for spaces at the important places.