class RuboCop::Cop::Style::MagicCommentFormat

def on_new_investigation

def on_new_investigation
  return unless processed_source.ast
  magic_comments.each do |comment|
    issues = find_issues(comment)
    register_offenses(issues) if issues.any?
  end
end