You are here

function drush_config_update_ui_config_missing_report in Configuration Update Manager 8

Runs the config missing report.

Parameters

string $type: Type of report to run: 'type', 'module', 'theme', or 'profile'.

string $name: Machine name of item to report on.

Return value

array An array of missing configuration items.

1 call to drush_config_update_ui_config_missing_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 183
Drush 8 commands for the Configuration Update Reports module.

Code

function drush_config_update_ui_config_missing_report($type, $name) {
  return drush_config_update_ui_cli_service()
    ->missingReport($type, $name);
}