mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
18 lines
338 B
PHP
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'),
|
|
]);
|
|
}
|
|
}
|