<?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(
            'RenvoyerResultatConnexion' => '\\StructType\\RenvoyerResultatConnexion',
            'RenvoyerResultatConnexionResponse' => '\\StructType\\RenvoyerResultatConnexionResponse',
            'RenvoyerResultatConnexionEspaceSecurise' => '\\StructType\\RenvoyerResultatConnexionEspaceSecurise',
            'RenvoyerResultatConnexionEspaceSecuriseResponse' => '\\StructType\\RenvoyerResultatConnexionEspaceSecuriseResponse',
            'InformationsConnexion' => '\\StructType\\InformationsConnexion',
            'ResultatConnexion' => '\\StructType\\ResultatConnexion',
            'InformationsConnexionEspaceSecurise' => '\\StructType\\InformationsConnexionEspaceSecurise',
            'ResultatAppelWebservice' => '\\StructType\\ResultatAppelWebservice',
            'ResultatOperationPublicBase' => '\\StructType\\ResultatOperationPublicBase',
            'ObjetPublicOutilsBase' => '\\StructType\\ObjetPublicOutilsBase',
            'ArrayOfMessage' => '\\ArrayType\\ArrayOfMessage',
            'Message' => '\\StructType\\Message',
            'ObjetPublicBase' => '\\StructType\\ObjetPublicBase',
        );
    }
}
