# File lib/brakeman/checks/check_model_attributes.rb, line 85
  def check_models
    tracker.models.each do |name, model|
      if model.unprotected_model?
        yield name, model
      end
    end
  end