for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @link https://github.com/phpviet/omnipay-momo
* @copyright (c) PHP Viet
* @license [MIT](http://www.opensource.org/licenses/MIT)
*/
namespace Omnipay\MoMo\Message;
* @author Vuong Minh <[email protected]>
* @since 1.0.0
class PayRefundResponse extends AbstractResponse
{
* {@inheritdoc}
public function getCode(): ?string
return $this->data['status'] ?? null;
}
public function getTransactionId(): ?string
return $this->data['partnerRefId'] ?? null;
public function getTransactionReference(): ?string
return $this->data['transid'] ?? null;