invoiceninja/app/Ninja/PaymentDrivers/CustomPaymentDriver.php
2017-01-30 18:05:31 +02:00

11 lines
206 B
PHP

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