main
1# frozen_string_literal: true
2
3module Saml
4 module Kit
5 class LogoutRequest
6 def build_table(table = [])
7 super(table)
8 table.push(['Name Id', name_id])
9 table
10 end
11 end
12 end
13end