mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
15 lines
247 B
PHP
15 lines
247 B
PHP
<?php
|
|
|
|
namespace App\Ninja\PaymentDrivers;
|
|
|
|
/**
|
|
* Class EwayRapidSharedPaymentDriver
|
|
*/
|
|
class EwayRapidSharedPaymentDriver extends BasePaymentDriver
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $transactionReferenceParam = 'AccessCode';
|
|
}
|