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:
状況によっては、クイックフィックスは欠落している引数を追加するか、余分な引数を除去するために使用できます。
例:
def example
end
# 渡した引数が多すぎます
example(true)