Reports method calls where the number of arguments passed (including blocks) doesn't match the method's signature. The method's signature is taken from either of:

A quick fix is available in some situations to add missing or remove excess arguments.

Example:

def example
end

# Too many arguments provided
example(true)