class RuboCop::Cop::Layout::ArgumentAlignment

def multiple_arguments?(node, first_argument)

def multiple_arguments?(node, first_argument)
  return true if node.arguments.size >= 2
  first_argument&.hash_type? && first_argument.pairs.count >= 2
end