<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php
/**
 * Class which returns the class map definition
 * @package
 */
class ClassMap
{
    /**
     * Returns the mapping between the WSDL Structs and generated Structs' classes
     * This array is sent to the \SoapClient when calling the WS
     * @return string[]
     */
    final public static function get()
    {
        return array(
            'tContinent' =&gt; '\\StructType\\TContinent',
            'tCurrency' =&gt; '\\StructType\\TCurrency',
            'tCountryCodeAndName' =&gt; '\\StructType\\TCountryCodeAndName',
            'tCountryCodeAndNameGroupedByContinent' =&gt; '\\StructType\\TCountryCodeAndNameGroupedByContinent',
            'tCountryInfo' =&gt; '\\StructType\\TCountryInfo',
            'tLanguage' =&gt; '\\StructType\\TLanguage',
            'ArrayOftCountryCodeAndName' =&gt; '\\ArrayType\\ArrayOftCountryCodeAndName',
            'ArrayOftLanguage' =&gt; '\\ArrayType\\ArrayOftLanguage',
            'ArrayOftContinent' =&gt; '\\ArrayType\\ArrayOftContinent',
            'ArrayOftCurrency' =&gt; '\\ArrayType\\ArrayOftCurrency',
            'ArrayOftCountryCodeAndNameGroupedByContinent' =&gt; '\\ArrayType\\ArrayOftCountryCodeAndNameGroupedByContinent',
            'ArrayOftCountryInfo' =&gt; '\\ArrayType\\ArrayOftCountryInfo',
            'ListOfContinentsByName' =&gt; '\\StructType\\ListOfContinentsByName',
            'ListOfContinentsByNameResponse' =&gt; '\\StructType\\ListOfContinentsByNameResponse',
            'ListOfContinentsByCode' =&gt; '\\StructType\\ListOfContinentsByCode',
            'ListOfContinentsByCodeResponse' =&gt; '\\StructType\\ListOfContinentsByCodeResponse',
            'ListOfCurrenciesByName' =&gt; '\\StructType\\ListOfCurrenciesByName',
            'ListOfCurrenciesByNameResponse' =&gt; '\\StructType\\ListOfCurrenciesByNameResponse',
            'ListOfCurrenciesByCode' =&gt; '\\StructType\\ListOfCurrenciesByCode',
            'ListOfCurrenciesByCodeResponse' =&gt; '\\StructType\\ListOfCurrenciesByCodeResponse',
            'CurrencyName' =&gt; '\\StructType\\CurrencyName',
            'CurrencyNameResponse' =&gt; '\\StructType\\CurrencyNameResponse',
            'ListOfCountryNamesByCode' =&gt; '\\StructType\\ListOfCountryNamesByCode',
            'ListOfCountryNamesByCodeResponse' =&gt; '\\StructType\\ListOfCountryNamesByCodeResponse',
            'ListOfCountryNamesByName' =&gt; '\\StructType\\ListOfCountryNamesByName',
            'ListOfCountryNamesByNameResponse' =&gt; '\\StructType\\ListOfCountryNamesByNameResponse',
            'ListOfCountryNamesGroupedByContinent' =&gt; '\\StructType\\ListOfCountryNamesGroupedByContinent',
            'ListOfCountryNamesGroupedByContinentResponse' =&gt; '\\StructType\\ListOfCountryNamesGroupedByContinentResponse',
            'CountryName' =&gt; '\\StructType\\CountryName',
            'CountryNameResponse' =&gt; '\\StructType\\CountryNameResponse',
            'CountryISOCode' =&gt; '\\StructType\\CountryISOCode',
            'CountryISOCodeResponse' =&gt; '\\StructType\\CountryISOCodeResponse',
            'CapitalCity' =&gt; '\\StructType\\CapitalCity',
            'CapitalCityResponse' =&gt; '\\StructType\\CapitalCityResponse',
            'CountryCurrency' =&gt; '\\StructType\\CountryCurrency',
            'CountryCurrencyResponse' =&gt; '\\StructType\\CountryCurrencyResponse',
            'CountryFlag' =&gt; '\\StructType\\CountryFlag',
            'CountryFlagResponse' =&gt; '\\StructType\\CountryFlagResponse',
            'CountryIntPhoneCode' =&gt; '\\StructType\\CountryIntPhoneCode',
            'CountryIntPhoneCodeResponse' =&gt; '\\StructType\\CountryIntPhoneCodeResponse',
            'FullCountryInfo' =&gt; '\\StructType\\FullCountryInfo',
            'FullCountryInfoResponse' =&gt; '\\StructType\\FullCountryInfoResponse',
            'FullCountryInfoAllCountries' =&gt; '\\StructType\\FullCountryInfoAllCountries',
            'FullCountryInfoAllCountriesResponse' =&gt; '\\StructType\\FullCountryInfoAllCountriesResponse',
            'CountriesUsingCurrency' =&gt; '\\StructType\\CountriesUsingCurrency',
            'CountriesUsingCurrencyResponse' =&gt; '\\StructType\\CountriesUsingCurrencyResponse',
            'ListOfLanguagesByName' =&gt; '\\StructType\\ListOfLanguagesByName',
            'ListOfLanguagesByNameResponse' =&gt; '\\StructType\\ListOfLanguagesByNameResponse',
            'ListOfLanguagesByCode' =&gt; '\\StructType\\ListOfLanguagesByCode',
            'ListOfLanguagesByCodeResponse' =&gt; '\\StructType\\ListOfLanguagesByCodeResponse',
            'LanguageName' =&gt; '\\StructType\\LanguageName',
            'LanguageNameResponse' =&gt; '\\StructType\\LanguageNameResponse',
            'LanguageISOCode' =&gt; '\\StructType\\LanguageISOCode',
            'LanguageISOCodeResponse' =&gt; '\\StructType\\LanguageISOCodeResponse',
        );
    }
}
</pre></body></html>