invoiceninja/app/Ninja/PaymentDrivers/CustomPaymentDriver.php

13 lines
207 B
PHP
Raw Normal View History

2016-09-26 12:33:30 +03:00
<?php namespace App\Ninja\PaymentDrivers;
class CustomPaymentDriver extends BasePaymentDriver
{
public function gatewayTypes()
{
return [
GATEWAY_TYPE_CUSTOM
];
}
}