1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00
invoiceninja/app/Ninja/PaymentDrivers/PayFastPaymentDriver.php
2017-01-30 21:40:43 +02:00

18 lines
338 B
PHP

<?php
namespace App\Ninja\PaymentDrivers;
use Request;
class PayFastPaymentDriver extends BasePaymentDriver
{
protected $transactionReferenceParam = 'm_payment_id';
public function completeOffsitePurchase($input)
{
parent::completeOffsitePurchase([
'token' => Request::query('pt'),
]);
}
}