1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Ninja/PaymentDrivers/PayFastPaymentDriver.php
2016-11-16 12:41:47 +02:00

16 lines
336 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')
]);
}
}