mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
13 lines
208 B
PHP
13 lines
208 B
PHP
<?php namespace App\Ninja\PaymentDrivers;
|
|
|
|
class BitPayPaymentDriver extends BasePaymentDriver
|
|
{
|
|
public function gatewayTypes()
|
|
{
|
|
return [
|
|
GATEWAY_TYPE_BITCOIN
|
|
];
|
|
}
|
|
|
|
}
|