<?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(
            'Ping' => '\\StructType\\Ping',
            'PingResponse' => '\\StructType\\PingResponse',
            'GetWebRaspored' => '\\StructType\\GetWebRaspored',
            'GetWebRasporedResponse' => '\\StructType\\GetWebRasporedResponse',
            'GetWebSljedecihNGrupa' => '\\StructType\\GetWebSljedecihNGrupa',
            'GetWebSljedecihNGrupaResponse' => '\\StructType\\GetWebSljedecihNGrupaResponse',
            'GetWebRasporedRequest' => '\\StructType\\GetWebRasporedRequest',
            'GetWebSljedecihNGrupaRequest' => '\\StructType\\GetWebSljedecihNGrupaRequest',
            'ResponseBase' => '\\StructType\\ResponseBase',
            'ArrayOfWebTermin' => '\\ArrayType\\ArrayOfWebTermin',
            'WebTermin' => '\\StructType\\WebTermin',
            'ArrayOfWebNtaGrupa' => '\\ArrayType\\ArrayOfWebNtaGrupa',
            'WebNtaGrupa' => '\\StructType\\WebNtaGrupa',
        );
    }
}
