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