class RuboCop::Cop::Layout::IndentationConsistency

def check(node)

def check(node)
  if style == :indented_internal_methods
    check_indented_internal_methods_style(node)
  else
    check_normal_style(node)
  end
end