Skip to content

Commit

Permalink
Merge pull request #63 from ThePay/4949-subscription-payment-pay-and-…
Browse files Browse the repository at this point in the history
…state-url-removed

nullable pay and state url
  • Loading branch information
AlexKratky authored Jan 4, 2024
2 parents f439601 + 60649f4 commit b0c8243
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Model/SimplePayment.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,12 @@ class SimplePayment
private $description_for_merchant;

/**
* @var string
* @var string empty if subscription payment
*/
private $payUrl;

/**
* @var string
* @var string empty if subscription payment
*/
private $detailUrl;

Expand Down Expand Up @@ -272,15 +272,15 @@ public function getOffsetAccount()
}

/**
* @return string
* @return string empty if subscription payment
*/
public function getPayUrl()
{
return $this->payUrl;
}

/**
* @return string
* @return string empty if subscription payment
*/
public function getDetailUrl()
{
Expand Down

0 comments on commit b0c8243

Please sign in to comment.