php-cs-fixer removes @param from docblocks f they don't have a description.
Not sure if this is a wanted behaviour but it wasn't like this a few months ago.
Initial code:
/**
* Undocumented function
*
* @param array $array
* @return boolean
*/
function test(array $array): bool {}
php-cs-fixer removes @param from docblocks f they don't have a description. Not sure if this is a wanted behaviour but it wasn't like this a few months ago.
Initial code:
after fixing:
desired: