Skip to content

Commit

Permalink
Add BLIK as APM
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt75 committed Jul 12, 2023
1 parent fc3579f commit c2cfe1c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/FundingSource/FundingSourceCollectionBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,12 @@ public function create()
$sofort->setIsEnabled($this->configuration->isEnabled('sofort'));
$sofort->setCountries($this->eligibilityConstraint->getCountries('sofort'));

return [$paypal, $paylater, $card, $bancontact, $eps, $giropay, $ideal, $mybank, $p24, $sofort];
// BLIK
$blik = new FundingSourceEntity('blik');
$blik->setPosition($this->configuration->getPosition('blik', 11));
$blik->setIsEnabled($this->configuration->isEnabled('blik'));
$blik->setCountries($this->eligibilityConstraint->getCountries('blik'));

return [$paypal, $paylater, $card, $bancontact, $eps, $giropay, $ideal, $mybank, $p24, $sofort, $blik];
}
}
1 change: 1 addition & 0 deletions views/img/blik.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit c2cfe1c

Please sign in to comment.