first commit
This commit is contained in:
38
lib/Service/Trade/Model/RefundResponseUnMarshaller.php
Normal file
38
lib/Service/Trade/Model/RefundResponseUnMarshaller.php
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\Trade\Model;
|
||||
|
||||
use Yeepay\Yop\Sdk\Model\Transform\BaseResponseUnMarshaller;
|
||||
|
||||
class RefundResponseUnMarshaller extends BaseResponseUnMarshaller
|
||||
{
|
||||
|
||||
/**
|
||||
* @var RefundResponseUnMarshaller
|
||||
*/
|
||||
private static $instance;
|
||||
|
||||
public static function __init()
|
||||
{
|
||||
self::$instance = new RefundResponseUnMarshaller();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return RefundResponseUnMarshaller
|
||||
*/
|
||||
public static function getInstance()
|
||||
{
|
||||
return self::$instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return RefundResponse
|
||||
*/
|
||||
protected function getResponseInstance()
|
||||
{
|
||||
return new RefundResponse();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
RefundResponseUnMarshaller::__init();
|
||||
Reference in New Issue
Block a user