commerce_funds-8.x-1.7/src/Plugin/Commerce/PaymentGateway/BalanceGatewayInterface.php
src/Plugin/Commerce/PaymentGateway/BalanceGatewayInterface.php
<?php
namespace Drupal\commerce_funds\Plugin\Commerce\PaymentGateway;
use Drupal\commerce_payment\Plugin\Commerce\PaymentGateway\PaymentGatewayInterface;
use Drupal\commerce_payment\Plugin\Commerce\PaymentGateway\SupportsCreatingPaymentMethodsInterface;
use Drupal\commerce_payment\Plugin\Commerce\PaymentGateway\SupportsStoredPaymentMethodsInterface;
/**
* Provides the interface for the Funds balance payment gateway.
*/
interface BalanceGatewayInterface extends PaymentGatewayInterface, SupportsStoredPaymentMethodsInterface, SupportsCreatingPaymentMethodsInterface {
}
