aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/arel/collectors/bind.rb
blob: 6f8912575dce8cec9de779138c2871c682eddbbe (plain) (tree)
1
2
3
4
5
6
7
8
9

                             
                         





                    
                 


            
                        









                      
# frozen_string_literal: true

module Arel # :nodoc: all
  module Collectors
    class Bind
      def initialize
        @binds = []
      end

      def <<(str)
        self
      end

      def add_bind(bind)
        @binds << bind
        self
      end

      def value
        @binds
      end
    end
  end
end