增加聚合支付托管下单
This commit is contained in:
39
lib/Service/Offline/Model/UpdateShopResponseUnMarshaller.php
Normal file
39
lib/Service/Offline/Model/UpdateShopResponseUnMarshaller.php
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\Offline\Model;
|
||||
|
||||
|
||||
use Yeepay\Yop\Sdk\Model\Transform\BaseResponseUnMarshaller;
|
||||
|
||||
class UpdateShopResponseUnMarshaller extends BaseResponseUnMarshaller
|
||||
{
|
||||
|
||||
/**
|
||||
* @var UpdateShopResponseUnMarshaller
|
||||
*/
|
||||
private static $instance;
|
||||
|
||||
public static function __init()
|
||||
{
|
||||
self::$instance = new UpdateShopResponseUnMarshaller();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return UpdateShopResponseUnMarshaller
|
||||
*/
|
||||
public static function getInstance()
|
||||
{
|
||||
return self::$instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return UpdateShopResponse
|
||||
*/
|
||||
protected function getResponseInstance()
|
||||
{
|
||||
return new UpdateShopResponse();
|
||||
}
|
||||
}
|
||||
|
||||
UpdateShopResponseUnMarshaller::__init();
|
||||
Reference in New Issue
Block a user