# File lib/doorkeeper/oauth/scopes.rb, line 47
      def +(other)
        if other.is_a? Scopes
          self.class.from_array(all + other.all)
        else
          super(other)
        end
      end