for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @link https://github.com/phpviet/omnipay-onepay
*
* @copyright (c) PHP Viet
* @license [MIT](https://opensource.org/licenses/MIT)
*/
namespace Omnipay\OnePay\Message;
* @author Vuong Minh <[email protected]>
* @since 1.0.0
class QueryTransactionResponse extends Response
{
* {@inheritdoc}
public function isSuccessful(): bool
return parent::isSuccessful() && 0 === strcasecmp('y', $this->data['vpc_DRExists']);
}