class RuboCop::Cop::Layout::ClosingHeredocIndentation

def message(node)

def message(node)
  format(
    node.argument? ? MSG_ARG : MSG,
    closing: heredoc_closing(node).strip,
    opening: heredoc_opening(node).strip
  )
end