class LHC::Formats::Form

def self.request(options)

def self.request(options)
  options[:format] = new
  super(options)
end

def as_json(input)

def as_json(input)
  parse(input)
end

def as_open_struct(input)

def as_open_struct(input)
  parse(input)
end

def format_options(options)

def format_options(options)
  options[:headers] ||= {}
  no_content_type_header!(options)
  options[:headers]['Content-Type'] = 'application/x-www-form-urlencoded'
  options
end

def parse(input)

def parse(input)
  input
end

def to_body(input)

def to_body(input)
  input
end

def to_s

def to_s
  'form'
end

def to_sym

def to_sym
  to_s.to_sym
end