public function Avatax::defaultConfiguration in Drupal Commerce Connector for AvaTax 8
Gets default configuration for this plugin.
Return value
array An associative array with the default configuration.
Overrides TaxTypeBase::defaultConfiguration
File
- src/
Plugin/ Commerce/ TaxType/ Avatax.php, line 83
Class
- Avatax
- Provides the AvaTax remote tax type.
Namespace
Drupal\commerce_avatax\Plugin\Commerce\TaxTypeCode
public function defaultConfiguration() {
return [
'display_inclusive' => FALSE,
] + parent::defaultConfiguration();
}