mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 04:27:14 +01:00
35 lines
671 B
PHP
35 lines
671 B
PHP
|
<?php
|
||
|
|
||
|
namespace Xentral\Modules\Dhl\Response;
|
||
|
|
||
|
use Xentral\Modules\Dhl\Exception\DhlBaseException;
|
||
|
use Xentral\Modules\Dhl\Exception\InvalidRequestDataException;
|
||
|
|
||
|
/**
|
||
|
* Class CreateShipmentResponse
|
||
|
*
|
||
|
* @package Xentral\Modules\Dhl\Response
|
||
|
*/
|
||
|
class GetVersionResponse extends BaseResponse
|
||
|
{
|
||
|
/**
|
||
|
* GetVersionResponse constructor.
|
||
|
*
|
||
|
*/
|
||
|
public function __construct()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $responseXml
|
||
|
*
|
||
|
* @return GetVersionResponse
|
||
|
*/
|
||
|
public static function fromResponseXml($responseXml)
|
||
|
{
|
||
|
$xmlElement = parent::createXmlElement($responseXml);
|
||
|
|
||
|
return new GetVersionResponse();
|
||
|
}
|
||
|
}
|