class RuboCop::Cop::Layout::SpaceBeforeFirstArg

def expect_params_after_method_name?(node)

def expect_params_after_method_name?(node)
  return false if node.parenthesized?
  return true if no_space_between_method_name_and_first_argument?(node)
  first_arg = node.first_argument
  same_line?(first_arg, node) &&
    !(allow_for_alignment? &&
      aligned_with_something?(first_arg.source_range))
end