class RuboCop::Cop::Layout::FirstParameterIndentation

def base_description(_)

Returns the description of what the correct indentation is based on.
def base_description(_)
  if style == brace_alignment_style
    'the position of the opening parenthesis'
  else
    'the start of the line where the left parenthesis is'
  end
end