public function ConfigurationUpdateGenerator::__construct in Update helper 8
Same name in this branch
- 8 src/Generator/ConfigurationUpdateGenerator.php \Drupal\update_helper\Generator\ConfigurationUpdateGenerator::__construct()
- 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\GeneratorCode
public function __construct(ConfigHandler $config_handler, ModuleHandler $module_handler) {
$this->configHandler = $config_handler;
$this->moduleHandler = $module_handler;
}