mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
14 lines
358 B
PHP
14 lines
358 B
PHP
<?php namespace App\Ninja\PaymentDrivers;
|
|
|
|
class PayFastPaymentDriver extends BasePaymentDriver
|
|
{
|
|
protected $transactionReferenceParam = 'm_payment_id';
|
|
|
|
public function completeOffsitePurchase($input)
|
|
{
|
|
if ($accountGateway->isGateway(GATEWAY_PAYFAST) && Request::has('pt')) {
|
|
$token = Request::query('pt');
|
|
}
|
|
}
|
|
}
|