You are here

function drush_config_update_ui_config_added_report in Configuration Update Manager 8

Runs the config added report.

Parameters

string $name: Type of config to report on.

Return value

array An array of added configuration items.

1 call to drush_config_update_ui_config_added_report()
ConfigUpdateTest::assertDrushReports in config_update_ui/tests/src/Functional/ConfigUpdateTest.php
Asserts that the Drush reports have the correct content.

File

config_update_ui/config_update_ui.drush.inc, line 168
Drush 8 commands for the Configuration Update Reports module.

Code

function drush_config_update_ui_config_added_report($name) {
  return drush_config_update_ui_cli_service()
    ->addedReport($name);
}