You are here

public function CheckoutFlowWithPanesBase::defaultConfiguration in Commerce Core 8.2

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides CheckoutFlowBase::defaultConfiguration

File

modules/checkout/src/Plugin/Commerce/CheckoutFlow/CheckoutFlowWithPanesBase.php, line 159

Class

CheckoutFlowWithPanesBase
Provides a base checkout flow that uses checkout panes.

Namespace

Drupal\commerce_checkout\Plugin\Commerce\CheckoutFlow

Code

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