<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(
            'Vyrobci' =&gt; '\\StructType\\Vyrobci',
            'VyrobciResponse' =&gt; '\\StructType\\VyrobciResponse',
            'VyrobciResult' =&gt; '\\StructType\\VyrobciResult',
            'Kategorie' =&gt; '\\StructType\\Kategorie',
            'KategorieResponse' =&gt; '\\StructType\\KategorieResponse',
            'KategorieResult' =&gt; '\\StructType\\KategorieResult',
            'Podkategorie' =&gt; '\\StructType\\Podkategorie',
            'PodkategorieResponse' =&gt; '\\StructType\\PodkategorieResponse',
            'PodkategorieResult' =&gt; '\\StructType\\PodkategorieResult',
            'StromKategoriePodkategorie' =&gt; '\\StructType\\StromKategoriePodkategorie',
            'StromKategoriePodkategorieResponse' =&gt; '\\StructType\\StromKategoriePodkategorieResponse',
            'StromKategoriePodkategorieResult' =&gt; '\\StructType\\StromKategoriePodkategorieResult',
            'StromPodleVyrobce' =&gt; '\\StructType\\StromPodleVyrobce',
            'StromPodleVyrobceResponse' =&gt; '\\StructType\\StromPodleVyrobceResponse',
            'StromPodleVyrobceResult' =&gt; '\\StructType\\StromPodleVyrobceResult',
            'StromPodleKategorie' =&gt; '\\StructType\\StromPodleKategorie',
            'StromPodleKategorieResponse' =&gt; '\\StructType\\StromPodleKategorieResponse',
            'StromPodleKategorieResult' =&gt; '\\StructType\\StromPodleKategorieResult',
            'ProduktManazeri' =&gt; '\\StructType\\ProduktManazeri',
            'ProduktManazeriResponse' =&gt; '\\StructType\\ProduktManazeriResponse',
            'ProduktManazeriResult' =&gt; '\\StructType\\ProduktManazeriResult',
            'ZpusobyDodavky' =&gt; '\\StructType\\ZpusobyDodavky',
            'ZpusobyDodavkyResponse' =&gt; '\\StructType\\ZpusobyDodavkyResponse',
            'ZpusobyDodavkyResult' =&gt; '\\StructType\\ZpusobyDodavkyResult',
            'Parametry' =&gt; '\\StructType\\Parametry',
            'ParametryResponse' =&gt; '\\StructType\\ParametryResponse',
            'ParametryResult' =&gt; '\\StructType\\ParametryResult',
            'DataSet' =&gt; '\\StructType\\DataSet',
        );
    }
}
</pre></body></html>