class RuboCop::Cop::Layout::MultilineAssignmentLayout

def check_by_enforced_style(node, rhs)

def check_by_enforced_style(node, rhs)
  case style
  when :new_line
    check_new_line_offense(node, rhs)
  when :same_line
    check_same_line_offense(node, rhs)
  end
end