mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
14 lines
322 B
PHP
14 lines
322 B
PHP
<?php namespace App\Ninja\PaymentDrivers;
|
|
|
|
class PayFastPaymentDriver extends BasePaymentDriver
|
|
{
|
|
protected $transactionReferenceParam = 'm_payment_id';
|
|
|
|
public function completeOffsitePurchase($input)
|
|
{
|
|
parent::completeOffsitePurchase([
|
|
'token' => Request::query('pt')
|
|
]);
|
|
}
|
|
}
|