mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
16 lines
461 B
PHP
16 lines
461 B
PHP
<?php namespace App\Ninja\PaymentDrivers;
|
|
|
|
class CybersourcePaymentDriver extends BasePaymentDriver
|
|
{
|
|
protected $transactionReferenceParam = 'transaction_uuid';
|
|
|
|
public function completeOffsitePurchase($input)
|
|
{
|
|
if ($input['decision'] == 'ACCEPT') {
|
|
return $this->createPayment($input['bill_trans_ref_no']);
|
|
} else {
|
|
throw new Exception($input['message'] . ': ' . $input['invalid_fields']);
|
|
}
|
|
}
|
|
}
|