Closed
Description
There is a false positive in src\Standards\Squiz\Sniffs\Commenting\FunctionCommentSniff.php
This code throws error: Function return type is not void, but function is returning void here
/**
* Test function
*
* @return array
*/
public function test()
{
function () {
return;
};
return [];
}