You are here

public function ConfigUpdateUiCommands::addedReport in Configuration Update Manager 8

Displays added config items.

Displays a list of config items that did not come from your installed modules, themes, or install profile.

@usage drush config-added-report action Displays the added config report for action config.

@command config:added-report @aliases cra,config-added-report

Parameters

string $name: The type of config to report on. See config-list-types to list them. 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 added configuration items.

File

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

Class

ConfigUpdateUiCommands
A set of Drush commands for Config Update Manager.

Namespace

Drupal\config_update_ui\Commands

Code

public function addedReport($name) {
  return $this->cliService
    ->addedReport($name);
}