for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @link https://github.com/yiiviet/yii2-payment
* @copyright Copyright (c) 2017 Yii Viet
* @license [New BSD License](http://www.opensource.org/licenses/bsd-license.php)
*/
namespace yiiviet\payment\vtcpay;
use vxm\gatewayclients\ResponseData as BaseResponseData;
* Lớp ResponseData cung cấp dữ liệu phản hồi từ VTCPay sau khi thực hiện hàm [[request()]] ở [[PaymentGateway]].
*
* @method PaymentClient getClient()
* @property PaymentClient $client
* @author Vuong Minh <[email protected]>
* @since 1.0.2
class ResponseData extends BaseResponseData
{
* @inheritdoc
public function getIsOk(): bool
return true;
}