You are here

public function ConfigUpdateUiCommands::missingReport in Configuration Update Manager 8

Displays missing config items.

Displays a list of config items from your installed modules, themes, or install profile that are not currently in your active config.

@usage drush config-missing-report type action Displays the missing config report for action config.

@command config:missing-report @aliases crm,config-missing-report

Parameters

string $type: Run the report for: module, theme, profile, or "type" for config entity type.

string $name: The machine name of the module, theme, etc. to report on. See config-list-types to list types for config entities; you can also use system.all for all types, or system.simple for simple config.

Return value

\Consolidation\OutputFormatters\StructuredData\RowsOfFields A structured data object of rows of missing configuration items.

File

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

Class

ConfigUpdateUiCommands
A set of Drush commands for Config Update Manager.

Namespace

Drupal\config_update_ui\Commands

Code

public function missingReport($type, $name) {
  return $this->cliService
    ->missingReport($type, $name);
}