Files
YeePay/lib/Service/Divide/Model/ApplyResponseUnMarshaller.php
2024-04-01 09:54:43 +08:00

39 lines
700 B
PHP

<?php
namespace Yeepay\Yop\Sdk\Service\Divide\Model;
use Yeepay\Yop\Sdk\Model\Transform\BaseResponseUnMarshaller;
class ApplyResponseUnMarshaller extends BaseResponseUnMarshaller
{
/**
* @var ApplyResponseUnMarshaller
*/
private static $instance;
public static function __init()
{
self::$instance = new ApplyResponseUnMarshaller();
}
/**
* @return ApplyResponseUnMarshaller
*/
public static function getInstance()
{
return self::$instance;
}
/**
* @return ApplyResponse
*/
protected function getResponseInstance()
{
return new ApplyResponse();
}
}
ApplyResponseUnMarshaller::__init();