You are here

public function ConfigParamUpdaterService::__construct in Config Importer and Tools 8

Same name and namespace in other branches
  1. 8.2 src/ConfigParamUpdaterService.php \Drupal\config_import\ConfigParamUpdaterService::__construct()

ConfigImporterService constructor.

Parameters

ConfigManagerInterface $config_manager: ConfigManager.

\Drupal\Core\Logger\LoggerChannelFactoryInterface $logger_factory: The logger factory.

File

src/ConfigParamUpdaterService.php, line 39

Class

ConfigParamUpdaterService
Class ConfigParamUpdaterService.

Namespace

Drupal\config_import

Code

public function __construct(ConfigManagerInterface $config_manager, LoggerChannelFactoryInterface $logger_factory) {
  $this->configManager = $config_manager;
  $this->logger = $logger_factory
    ->get('config_update');
}