You are here

public function TestGateway::defaultConfiguration in Ubercart 8.4

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides CreditCardPaymentMethodBase::defaultConfiguration

File

payment/uc_credit/src/Plugin/Ubercart/PaymentMethod/TestGateway.php, line 34

Class

TestGateway
Defines the test gateway payment method.

Namespace

Drupal\uc_credit\Plugin\Ubercart\PaymentMethod

Code

public function defaultConfiguration() {
  return parent::defaultConfiguration() + [
    'debug' => FALSE,
  ];
}