group-8.x-1.x-dev/tests/modules/group_test_plugin/group_test_plugin.module
tests/modules/group_test_plugin/group_test_plugin.module
<?php
/**
* @file
* Helper module for the Group plugin tests.
*/
use Drupal\Core\Hook\Attribute\LegacyHook;
use Drupal\group_test_plugin\Hook\EntityHooks;
/**
* Implements hook_entity_bundle_info_alter().
*/
#[LegacyHook]
function group_test_plugin_entity_bundle_info_alter(&$bundles) {
\Drupal::service(EntityHooks::class)->entityBundleInfoAlter($bundles);
}
