From c4baa5459a741a24690145e3bdb13e257f596d90 Mon Sep 17 00:00:00 2001 From: svd Date: Wed, 25 Mar 2026 10:09:44 +0100 Subject: [PATCH] fix webhook php higher 80200 --- src/V2/ClientOptions/BaseParameters.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/V2/ClientOptions/BaseParameters.php b/src/V2/ClientOptions/BaseParameters.php index 4b4a8465..65624e5d 100644 --- a/src/V2/ClientOptions/BaseParameters.php +++ b/src/V2/ClientOptions/BaseParameters.php @@ -71,7 +71,7 @@ public function asHash(): array $outHash['webhook_ids'] = $this->webhooksIds[0]; } else { foreach ($this->webhooksIds as $webhookId) { - $outHash['webhook_ids[]'] = $webhookId; + $outHash['webhook_ids'][] = $webhookId; } } }