invoiceninja/app/Ninja/PaymentDrivers/CustomPaymentDriver.php

14 lines
208 B
PHP
Raw Normal View History

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