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.