Return a new hash with all keys converted to symbols.
Convert all keys in the hash to symbols.
@example
test = {'abc' => 'def'} test.symbolize_keys! test # => {:abc => 'def'}
Symbolize all keys recursively within nested hashes and arrays.
[Validate]