class ActiveRecord::Reflection::HasManyReflection

:nodoc:

def association_class

def association_class
  if options[:through]
    Associations::HasManyThroughAssociation
  else
    Associations::HasManyAssociation
  end
end

def collection?; true; end

def collection?; true; end

def macro; :has_many; end

:nodoc:
def macro; :has_many; end