mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
16 lines
336 B
PHP
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')
|
|
]);
|
|
}
|
|
}
|