<?php

namespace axa.ma;

/**
 * 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(
            'COULEAD' => '\\axa.ma\\StructType\\COULEAD',
            'leadAXAMA' => '\\axa.ma\\StructType\\LeadAXAMA',
            'COULEADResponse' => '\\axa.ma\\StructType\\COULEADResponse',
            'resultLead' => '\\axa.ma\\StructType\\ResultLead',
            'IOException' => '\\axa.ma\\StructType\\IOException',
            'ConnectionException' => '\\axa.ma\\StructType\\ConnectionException',
        );
    }
}
