From b498d55a30c638cc4562b1fa384ed9594ff08382 Mon Sep 17 00:00:00 2001 From: Andy Pieters Date: Wed, 29 Nov 2017 15:13:54 +0100 Subject: [PATCH] PaymentOptionSub does not need to be numeric anymore. --- src/Api/Transaction/Start.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Api/Transaction/Start.php b/src/Api/Transaction/Start.php index 8ea771a0..2e95c377 100644 --- a/src/Api/Transaction/Start.php +++ b/src/Api/Transaction/Start.php @@ -306,9 +306,6 @@ public function setPaymentOptionId($paymentOptionId) public function setPaymentOptionSubId($paymentOptionSubId) { - if (!is_numeric($paymentOptionSubId)) { - throw new Error('PaymentOptionSubId is niet numeriek', 1); - } $this->_paymentOptionSubId = $paymentOptionSubId; }