<?php

namespace TaxyPrinta6;

/**
 * Class which returns the class map definition
 * @package TaxyPrinta6
 */
class TaxyPrinta6ClassMap
{
    /**
     * 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(
            'PRINT' => '\\TaxyPrinta6\\TaxyPrinta6Struct\\TaxyPrinta6PRINT',
            'PRINTResponse' => '\\TaxyPrinta6\\TaxyPrinta6Struct\\TaxyPrinta6PRINTResponse',
        );
    }
}
