Coder reports an error when 2 attributes are used on a method that the fucntion doc comments are missing, even if it is there
/**
* Test PHP attributes.
*/
class TestPhpAttributes {
/**
* Method docblock.
*/
#[Some\Attribute(foo: 'bar')]
#[Other\Attribute(baz: 'qux')]
public function method() {
}
}
Fixed
8.3
Coder Sniffer