From c756a000395837340396103891a32933d6a01ea5 Mon Sep 17 00:00:00 2001 From: Lars Kusch Date: Sun, 10 Oct 2021 07:08:34 +0200 Subject: [PATCH] remove test country --- app/PaymentDrivers/StripePaymentDriver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/PaymentDrivers/StripePaymentDriver.php b/app/PaymentDrivers/StripePaymentDriver.php index ca3cc778878e..397adf6f8aa6 100644 --- a/app/PaymentDrivers/StripePaymentDriver.php +++ b/app/PaymentDrivers/StripePaymentDriver.php @@ -180,7 +180,7 @@ class StripePaymentDriver extends BaseDriver && $this->client->currency() && ($this->client->currency()->code == 'EUR') && isset($this->client->country) - && in_array($this->client->country->iso_3166_3, ["AUT", "DEU"])) // TODO: remove test country + && in_array($this->client->country->iso_3166_3, ["AUT"])) $types[] = GatewayType::EPS; return $types;