mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-14 15:13:29 +01:00
9 lines
161 B
PHP
9 lines
161 B
PHP
<?php
|
|
|
|
namespace App\Ninja\PaymentDrivers;
|
|
|
|
class AuthorizeNetAIMPaymentDriver extends BasePaymentDriver
|
|
{
|
|
protected $transactionReferenceParam = 'refId';
|
|
}
|