invoiceninja/app/Ninja/PaymentDrivers/PayFastPaymentDriver.php
2016-08-15 23:14:08 +03:00

13 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')
]);
}
}