<?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',
            'SendStreamRequest' => '\\StructType\\SendStreamRequest',
            'RetrieveStreamResponse' => '\\StructType\\RetrieveStreamResponse',
            'Payload' => '\\StructType\\Payload',
            'eHubGatewayMessage' => '\\StructType\\EHubGatewayMessage',
            'VirtualStream' => '\\StructType\\VirtualStream',
            'ApplicationFault' => '\\StructType\\ApplicationFault',
            'SerializableDictionaryOfguidstring' => '\\StructType\\SerializableDictionaryOfguidstring',
            'Stream' => '\\StructType\\Stream',
            'FileStream' => '\\StructType\\FileStream',
            'UnmanagedMemoryStream' => '\\StructType\\UnmanagedMemoryStream',
            'MarshalByRefObject' => '\\StructType\\MarshalByRefObject',
            'Pointer' => '\\StructType\\Pointer',
        );
    }
}
