degov-8.x-2.0/modules/degov_taxonomy_term_tags/degov_taxonomy_term_tags.install
modules/degov_taxonomy_term_tags/degov_taxonomy_term_tags.install
<?php
use Drupal\degov_common\Common;
/**
* Implements hook_uninstall().
*/
function degov_taxonomy_term_tags_uninstall() {
// Removes all module type defined content when uninstalling the module.
Common::removeContent([
'entity_type' => 'taxonomy_term',
'entity_bundles' => ['tags'],
]);
}