<?php

namespace Iben_tracing;

/**
 * Class which returns the class map definition
 * @package Iben_tracing
 */
class Iben_tracingClassMap
{
    /**
     * 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(
            'READ' => '\\Iben_tracing\\TracingStruct\\Iben_tracingREAD',
            'READResponse' => '\\Iben_tracing\\TracingStruct\\Iben_tracingREADResponse',
            'web_status' => '\\Iben_tracing\\TracingStruct\\Iben_tracingWeb_status',
        );
    }
}
