From 2c5c3173d7665009730f8b75f66e8a6364002ceb Mon Sep 17 00:00:00 2001 From: Sylvester Date: Fri, 5 Apr 2024 12:37:27 +0200 Subject: [PATCH] Fix for adding issuers for iDEAL in table: ps_ol_payment_method_issuer --- src/Service/ApiService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Service/ApiService.php b/src/Service/ApiService.php index 09ecdb344..481c5a29b 100644 --- a/src/Service/ApiService.php +++ b/src/Service/ApiService.php @@ -119,7 +119,7 @@ public function getMethodsForConfig(MollieApiClient $api) try { /** Requires local param or fails */ /** @var BaseCollection|MethodCollection $apiMethods */ - $apiMethods = $api->methods->allAvailable(['locale' => '']); + $apiMethods = $api->methods->allAvailable(['locale' => '', 'include' => 'issuers']); $apiMethods = $apiMethods->getArrayCopy(); /** @var Method $method */ foreach ($apiMethods as $key => $method) {