for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CultureKings\Afterpay\Model\Merchant;
/**
* Class MerchantOptions
* @package CultureKings\Afterpay\Model
*/
class MerchantOptions
{
* @var string
protected $redirectConfirmUrl;
protected $redirectCancelUrl;
* @return string
public function getRedirectConfirmUrl()
return $this->redirectConfirmUrl;
}
* @param string $redirectConfirmUrl
* @return $this
public function setRedirectConfirmUrl($redirectConfirmUrl)
$this->redirectConfirmUrl = $redirectConfirmUrl;
return $this;
public function getRedirectCancelUrl()
return $this->redirectCancelUrl;
* @param string $redirectCancelUrl
public function setRedirectCancelUrl($redirectCancelUrl)
$this->redirectCancelUrl = $redirectCancelUrl;