You are here

public function TaxTypeForm::__construct in Commerce Core 8.2

Constructs a new TaxTypeForm object.

Parameters

\Drupal\commerce_tax\TaxTypeManager $plugin_manager: The tax type plugin manager.

\Drupal\commerce\InlineFormManager $inline_form_manager: The inline form manager.

File

modules/tax/src/Form/TaxTypeForm.php, line 36

Class

TaxTypeForm

Namespace

Drupal\commerce_tax\Form

Code

public function __construct(TaxTypeManager $plugin_manager, InlineFormManager $inline_form_manager) {
  $this->pluginManager = $plugin_manager;
  $this->inlineFormManager = $inline_form_manager;
}