1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-09 20:52:56 +01:00
invoiceninja/app/Ninja/PaymentDrivers/BitPayPaymentDriver.php
2019-01-30 21:45:46 +11:00

14 lines
209 B
PHP
Executable File

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