<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php

namespace farpointsystems\cdtfa-test;

/**
 * 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(
            'fileTaxReturn' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\FileTaxReturn',
            'RequestHeaderType' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\RequestHeaderType',
            'fileTaxReturnResponse' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\FileTaxReturnResponse',
            'TaxReturnResponseType' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\TaxReturnResponseType',
            'ErrorGroupType' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\ErrorGroupType',
            'ErrorType' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\ErrorType',
            'getSUTPrepayFuelRates' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\GetSUTPrepayFuelRates',
            'getSUTPrepayFuelRatesResponse' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\GetSUTPrepayFuelRatesResponse',
            'FuelRateResponseType' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\FuelRateResponseType',
            'FuelRateType' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\FuelRateType',
            'getSubLocations' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\GetSubLocations',
            'getSubLocationsResponse' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\GetSubLocationsResponse',
            'SubLocationResponseType' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\SubLocationResponseType',
            'ExistingLocationType' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\ExistingLocationType',
            'RequiredAddressType' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\RequiredAddressType',
            'TaxAreaCodeType' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\TaxAreaCodeType',
            'getReturnPackage' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\GetReturnPackage',
            'getReturnPackageResponse' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\GetReturnPackageResponse',
            'ReturnPackageResponseType' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\ReturnPackageResponseType',
            'ReturnPackageFormType' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\ReturnPackageFormType',
            'makePrePayment' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\MakePrePayment',
            'makePrePaymentResponse' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\MakePrePaymentResponse',
            'Ping' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\Ping',
            'PingResponse' =&gt; '\\farpointsystems\\cdtfa-test\\StructType\\PingResponse',
        );
    }
}
</pre></body></html>