<?php

namespace Hp_;

/**
 * Class which returns the class map definition
 * @package Hp_
 */
class Hp_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(
            'THpSvcWTableauChaines' => '\\Hp_\\StructType\\Hp_THpSvcWTableauChaines',
            'THpSvcWTableauClesFamilles' => '\\Hp_\\StructType\\Hp_THpSvcWTableauClesFamilles',
            'THpSvcWTableauClesRubriques' => '\\Hp_\\StructType\\Hp_THpSvcWTableauClesRubriques',
            'THpSvcWTableauGenresFamille' => '\\Hp_\\StructType\\Hp_THpSvcWTableauGenresFamille',
        );
    }
}
