1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00

PayFast API token billing

This commit is contained in:
David Bomba 2021-09-23 17:55:28 +10:00
parent dbb45e705e
commit b152221854
2 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ class Gateway extends StaticModel
return [GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => true]];//eWay
break;
case 11:
return [GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => false]];//Payfast
return [GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => true]];//Payfast
break;
case 7:
return [

View File

@ -28,7 +28,7 @@ class PayFastPaymentDriver extends BaseDriver
public $refundable = false; //does this gateway support refunds?
public $token_billing = false; //does this gateway support token billing?
public $token_billing = true; //does this gateway support token billing?
public $can_authorise_credit_card = true; //does this gateway support authorizations?