for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Omnipay\Heidelpay\Message;
/**
* PaymentResponse
*/
class PaymentResponse extends Response
{
public function isSuccessful()
return $this->data['isSuccess'];
}
public function isRedirect()
return isset($this->data['redirectUrl']);
public function getRedirectUrl()
return $this->data['redirectUrl'];
public function isPending()
return $this->data['isPending'];