Files
YeePay/lib/Service/Invoice/Model/ApplyResponseUnMarshaller.php

40 lines
702 B
PHP

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