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

39 lines
784 B
PHP

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