1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-13 22:54:25 +01:00
invoiceninja/app/Ninja/PaymentDrivers/CustomPaymentDriver.php

14 lines
208 B
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Ninja\PaymentDrivers;
2016-09-26 11:33:30 +02:00
class CustomPaymentDriver extends BasePaymentDriver
{
public function gatewayTypes()
{
return [
2017-01-30 20:40:43 +01:00
GATEWAY_TYPE_CUSTOM,
2016-09-26 11:33:30 +02:00
];
}
}