1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 20:22:42 +01:00

GoCardless only accepts bank transfers, not credit cards

This commit is contained in:
Joshua Dwire 2016-09-08 20:52:32 -04:00
parent 620e93084f
commit ed07439de2

View File

@ -3,4 +3,11 @@
class GoCardlessPaymentDriver extends BasePaymentDriver
{
protected $transactionReferenceParam = 'signature';
public function gatewayTypes()
{
return [
GATEWAY_TYPE_BANK_TRANSFER
];
}
}