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