You are here

public function Mollie::defaultConfiguration in Commerce Mollie 8

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides PaymentGatewayBase::defaultConfiguration

File

src/Plugin/Commerce/PaymentGateway/Mollie.php, line 81

Class

Mollie
Provides the Mollie payment gateway.

Namespace

Drupal\commerce_mollie\Plugin\Commerce\PaymentGateway

Code

public function defaultConfiguration() {
  $default_configuration = [
    'api_key_test' => 'test_',
    'api_key_live' => 'live_',
    'callback_domain' => '',
  ];
  return $default_configuration + parent::defaultConfiguration();
}