From 6f3e56a2a28e9cb235271f66d372920705ae56a9 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 24 Sep 2024 09:31:52 +1000 Subject: [PATCH] Fixes for tests --- app/Services/EDocument/Gateway/Qvalia/Partner.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Services/EDocument/Gateway/Qvalia/Partner.php b/app/Services/EDocument/Gateway/Qvalia/Partner.php index e16f332172ef..a2e19aee7420 100644 --- a/app/Services/EDocument/Gateway/Qvalia/Partner.php +++ b/app/Services/EDocument/Gateway/Qvalia/Partner.php @@ -107,7 +107,7 @@ class Partner { $uri = "/partner/{$this->partner_number}/account/{$accountRegNo}"; - return $this->qvalia->httpClient($uri, (\App\Enum\HttpVerb::DELETE)->value),[])->object(); + return $this->qvalia->httpClient($uri, (\App\Enum\HttpVerb::DELETE)->value, [])->object(); } /** @@ -138,7 +138,7 @@ class Partner { $uri = "/partner/{$this->partner_number}/account/{$accountRegNo}/peppol/{$peppolId}"; - return $this->qvalia->httpClient($uri, (\App\Enum\HttpVerb::DELETE)->value), [])->object(); + return $this->qvalia->httpClient($uri, (\App\Enum\HttpVerb::DELETE)->value, [])->object(); } }