You are here

public function ConfigUpdateUiCommands::__construct in Configuration Update Manager 8

Constructs a ConfigUpdateUiCommands object.

Parameters

\Drupal\config_update_ui\ConfigUpdateUiCliService $cliService: The CLI service which allows interoperability between Drush versions.

File

config_update_ui/src/Commands/ConfigUpdateUiCommands.php, line 29

Class

ConfigUpdateUiCommands
A set of Drush commands for Config Update Manager.

Namespace

Drupal\config_update_ui\Commands

Code

public function __construct(ConfigUpdateUiCliService $cliService) {
  $this->cliService = $cliService;
  $this->cliService
    ->setLogger(Drush::logger());
}