Skip to content

Commit

Permalink
define issuers' payment method
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbakker committed Dec 8, 2020
1 parent 0483a40 commit f361fa7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Message/FetchIssuersResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ public function getIssuers()
{
$issuers = [];
foreach ($this->data as $name => $id) {
$issuers[] = new Issuer($id, $name);
//This API only returns iDEAL issuers
$issuers[] = new Issuer($id, $name, "iDEAL");
}

return $issuers;
Expand Down

0 comments on commit f361fa7

Please sign in to comment.