From 6c15808b044b8d9e4aae2d2cdfe8fd42bef34a0c Mon Sep 17 00:00:00 2001 From: Djellze Bllaca Date: Wed, 10 Jul 2024 14:26:54 +0200 Subject: [PATCH] Remove pushUrl from required parameters --- src/PaymentMethods/PaymentMethod.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PaymentMethods/PaymentMethod.php b/src/PaymentMethods/PaymentMethod.php index 0a1cf3a..7f5e0c4 100644 --- a/src/PaymentMethods/PaymentMethod.php +++ b/src/PaymentMethods/PaymentMethod.php @@ -58,7 +58,7 @@ abstract class PaymentMethod implements PaymentInterface /** * @var array|string[] */ - protected array $requiredConfigFields = ['currency', 'pushURL']; + protected array $requiredConfigFields = ['currency']; /** * @var string */