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

12 lines
207 B
PHP

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