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

39 lines
728 B
PHP

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