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

39 lines
823 B
PHP

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