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()

Configuration update generator.

Parameters

\Drupal\update_helper\ConfigHandler $config_handler: Config handler service.

\Drupal\Core\Extension\ModuleHandler $module_handler: Module handler service.

File

src/Generator/ConfigurationUpdateGenerator.php, line 39

Class

ConfigurationUpdateGenerator
Configuration update generator for generate:configuration:update command.

Namespace

Drupal\update_helper\Generator

Code

public function __construct(ConfigHandler $config_handler, ModuleHandler $module_handler) {
  $this->configHandler = $config_handler;
  $this->moduleHandler = $module_handler;
}