Skip to content

Commit

Permalink
Move description parameter to end to not cause breaking change in min…
Browse files Browse the repository at this point in the history
…or release.
  • Loading branch information
ndeet committed Sep 13, 2024
1 parent 9bbb7e8 commit 5e2ba7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Client/PullPayment.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ public function getStorePullPayments(
public function createPullPayment(
string $storeId,
?string $name = null,
?string $description = null,
PreciseNumber $amount,
string $currency,
?int $period,
?int $BOLT11Expiration,
?bool $autoApproveClaims = false,
?int $startsAt,
?int $expiresAt,
array $paymentMethods
array $paymentMethods,
?string $description = null
): ResultPullPayment {
$url = $this->getApiUrl() . 'stores/' .
urlencode($storeId) . '/pull-payments';
Expand Down

0 comments on commit 5e2ba7e

Please sign in to comment.