class RuboCop::Cop::Layout::ClosingHeredocIndentation

def argument_indentation_correct?(node)

def argument_indentation_correct?(node)
  return false unless node.argument? || node.chained?
  opening_indentation(
    find_node_used_heredoc_argument(node.parent)
  ) == closing_indentation(node)
end