1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Ninja/PaymentDrivers/CybersourcePaymentDriver.php
2016-07-21 15:35:23 +03:00

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