invoiceninja/app/Ninja/PaymentDrivers/Custom2PaymentDriver.php

14 lines
210 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Ninja\PaymentDrivers;
class Custom2PaymentDriver extends BasePaymentDriver
{
public function gatewayTypes()
{
return [
GATEWAY_TYPE_CUSTOM2,
];
}
}