1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00
invoiceninja/app/Ninja/PaymentDrivers/BitPayPaymentDriver.php

20 lines
282 B
PHP
Raw Normal View History

<?php
2016-06-20 16:14:43 +02:00
namespace App\Ninja\PaymentDrivers;
/**
* Class BitPayPaymentDriver
*/
2016-06-20 16:14:43 +02:00
class BitPayPaymentDriver extends BasePaymentDriver
{
/**
* @return array
*/
2016-06-22 20:42:09 +02:00
public function gatewayTypes()
2016-06-20 16:14:43 +02:00
{
return [
GATEWAY_TYPE_BITCOIN
];
}
}