mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
15 lines
242 B
PHP
15 lines
242 B
PHP
<?php
|
|
|
|
namespace App\Ninja\PaymentDrivers;
|
|
|
|
/**
|
|
* Class AuthorizeNetAIMPaymentDriver
|
|
*/
|
|
class AuthorizeNetAIMPaymentDriver extends BasePaymentDriver
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $transactionReferenceParam = 'refId';
|
|
}
|