You are here

public function ConfigurationUpdateGenerator::__construct in Update helper 8

Same name in this branch
  1. 8 src/Generator/ConfigurationUpdateGenerator.php \Drupal\update_helper\Generator\ConfigurationUpdateGenerator::__construct()
  2. 8 modules/update_helper_checklist/src/Generator/ConfigurationUpdateGenerator.php \Drupal\update_helper_checklist\Generator\ConfigurationUpdateGenerator::__construct()

AuthenticationProviderGenerator constructor.

Parameters

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: Extension manager.

\Drupal\update_helper_checklist\UpdateChecklist $update_checklist: Update checklist service.

File

modules/update_helper_checklist/src/Generator/ConfigurationUpdateGenerator.php, line 38

Class

ConfigurationUpdateGenerator
Update hook generator for generate:configuration:update console command.

Namespace

Drupal\update_helper_checklist\Generator

Code

public function __construct(ModuleHandlerInterface $module_handler, UpdateChecklist $update_checklist) {
  $this->moduleHandler = $module_handler;
  $this->updateChecklist = $update_checklist;
}