From ae3eb4e5486d9c8914deeac23824447eeab3a6c8 Mon Sep 17 00:00:00 2001 From: Marcin Warzybok Date: Mon, 11 Dec 2023 14:13:38 +0100 Subject: [PATCH] SP-735 Type Review: PHP --- src/BitPaySDK/Model/Invoice/Invoice.php | 2 +- src/BitPaySDK/Model/Payout/RecipientWebhook.php | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/src/BitPaySDK/Model/Invoice/Invoice.php b/src/BitPaySDK/Model/Invoice/Invoice.php index c95eaf34..7903b563 100644 --- a/src/BitPaySDK/Model/Invoice/Invoice.php +++ b/src/BitPaySDK/Model/Invoice/Invoice.php @@ -1118,7 +1118,7 @@ public function getExceptionStatus(): string|null * "paidPartial": (string) if the consumer did not send enough funds when paying the invoice. * "paidOver": (string) if the consumer sent to much funds when paying the invoice. * - * @param string|null $exceptionStatus this parameter will indicate if the purchaser sent too much or not enough funds + * @param string|null $exceptionStatus parameter will indicate if the purchaser sent too much or not enough funds */ public function setExceptionStatus(string|null $exceptionStatus): void { diff --git a/src/BitPaySDK/Model/Payout/RecipientWebhook.php b/src/BitPaySDK/Model/Payout/RecipientWebhook.php index 98920a3f..287ebfd7 100644 --- a/src/BitPaySDK/Model/Payout/RecipientWebhook.php +++ b/src/BitPaySDK/Model/Payout/RecipientWebhook.php @@ -72,9 +72,4 @@ public function setShopperId(?string $shopperId): void { $this->shopperId = $shopperId; } - - - - - }