class Bullet::NotificationCollector

def add(value)

def add(value)
  @collection << value
end

def initialize

def initialize
  reset
end

def notifications_present?

def notifications_present?
  !@collection.empty?
end

def reset

def reset
  @collection = Set.new
end