Skip to content

Fixes #3459165: implement interface method

\Drupal\hook_event_dispatcher\HookEventPluginManager uses an anonymous class to create a lightweight module handler. Since Drupal 10.3.1 the ModuleHandlerInterface extends the DestructableInterface, adding the destruct() method as a method. This caused fatal errors when updatig to 10.3.1. Adding an empty implementation for the destruct method in the anonymous class fixes that error.

Closes #3459165

Merge request reports