public function ConfigUpdateUiCommands::differentReport in Configuration Update Manager 8
Displays differing config items.
Displays a list of config items that differ from the versions provided by your installed modules, themes, or install profile. See config-diff to show what the differences are.
@usage drush config-different-report type action Displays the differing config report for action config.
@command config:different-report @aliases crd,config-different-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 differing configuration items.
File
- config_update_ui/
src/ Commands/ ConfigUpdateUiCommands.php, line 149
Class
- ConfigUpdateUiCommands
- A set of Drush commands for Config Update Manager.
Namespace
Drupal\config_update_ui\CommandsCode
public function differentReport($type, $name) {
return $this->cliService
->differentReport($type, $name);
}