mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
20 lines
478 B
PHP
20 lines
478 B
PHP
<?php
|
|
|
|
namespace App\Ninja\PaymentDrivers;
|
|
|
|
use Exception;
|
|
|
|
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']);
|
|
}
|
|
}
|
|
}
|