You are here

public function MultiStepFormBase::__construct in User Merge 2.x

MultiStepFormBase constructor.

Parameters

\Drupal\usermerge\MultiStepStorageInterface $multi_step_storage: Multi step storage.

\Drupal\usermerge\ReviewFormSwitcherInterface $review_switcher: Review form switcher.

\Drupal\usermerge\BatchGeneratorInterface $batch_generator: Batch generator.

1 call to MultiStepFormBase::__construct()
PickAccountsForm::__construct in src/Form/PickAccountsForm.php
MergeAccountsForm constructor.
1 method overrides MultiStepFormBase::__construct()
PickAccountsForm::__construct in src/Form/PickAccountsForm.php
MergeAccountsForm constructor.

File

src/Form/MultiStepFormBase.php, line 50

Class

MultiStepFormBase
Class MultiStepFormBase.

Namespace

Drupal\usermerge\Form

Code

public function __construct(MultiStepStorageInterface $multi_step_storage, ReviewFormSwitcherInterface $review_switcher, BatchGeneratorInterface $batch_generator) {
  $this->multiStepStorage = $multi_step_storage;
  $this->reviewSwitcher = $review_switcher;
  $this->batchGenerator = $batch_generator;
}