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