<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(
            'enregistrerDossier' =&gt; '\\StructType\\EnregistrerDossier',
            'dossierInput' =&gt; '\\StructType\\DossierInput',
            'personneInput' =&gt; '\\StructType\\PersonneInput',
            'villeInput' =&gt; '\\StructType\\VilleInput',
            'risqueInput' =&gt; '\\StructType\\RisqueInput',
            'bienAssureInput' =&gt; '\\StructType\\BienAssureInput',
            'enregistrerDossierResponse' =&gt; '\\StructType\\EnregistrerDossierResponse',
            'dossierOutput' =&gt; '\\StructType\\DossierOutput',
            'modifierDossier' =&gt; '\\StructType\\ModifierDossier',
            'modifierDossierResponse' =&gt; '\\StructType\\ModifierDossierResponse',
            'validerDossier' =&gt; '\\StructType\\ValiderDossier',
            'validerDossierResponse' =&gt; '\\StructType\\ValiderDossierResponse',
            'Exception' =&gt; '\\StructType\\Exception',
        );
    }
}
</pre></body></html>