mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-12-30 02:10:52 -05:00
12 lines
207 B
PHP
12 lines
207 B
PHP
<?php namespace App\Ninja\PaymentDrivers;
|
|
|
|
class BitPayPaymentDriver extends BasePaymentDriver
|
|
{
|
|
public function gatewayTypes()
|
|
{
|
|
return [
|
|
GATEWAY_TYPE_BITCOIN
|
|
];
|
|
}
|
|
}
|