| Current Path : /var/www/html/libraries/omnipay/vendor/omnipay/bitpay/src/Message/ |
| Current File : /var/www/html/libraries/omnipay/vendor/omnipay/bitpay/src/Message/PurchaseStatusResponse.php |
<?php
namespace Omnipay\BitPay\Message;
/**
* BitPay Purchase Status Response
*/
class PurchaseStatusResponse extends PurchaseResponse
{
public function isSuccessful()
{
return !$this->getMessage();
}
public function isRedirect()
{
return false;
}
}