class RuboCop::Cop::Layout::AlignParameters
def message(node)
def message(node) type = if node && (node.parent.send_type? || node.parent.csend_type?) 'call' else 'definition' end msg = fixed_indentation? ? FIXED_INDENT_MSG : ALIGN_PARAMS_MSG format(msg, type: type) end