Merge pull request #80 from adrijanb/remove_ing

Remove ING Home Pay
This commit is contained in:
Wouter van Os
2021-02-16 09:26:13 +01:00
committed by GitHub

View File

@@ -1,22 +0,0 @@
<?php
require_once __DIR__ . '/mollie/mollie.php';
function mollieinghomepay_devapp_config()
{
$config = mollie_config();
$config = array_merge($config, array(
'FriendlyName' => array(
'Type' => 'System',
'Value' => 'Mollie ING Home\'Pay'
)
));
return $config;
}
function mollieinghomepay_devapp_link($params)
{
return mollie_link($params, \Mollie\Api\Types\PaymentMethod::INGHOMEPAY);
}