main
 1# frozen_string_literal: true
 2
 3module Saml
 4  module Kit
 5    class Response
 6      def build_table(table = [])
 7        super(table)
 8        assertion.build_table(table) if assertion.present?
 9        table
10      end
11    end
12  end
13end