nicoschi

Results 3 comments of nicoschi

A hook system will be much appreciated for a better management, meantime for the Mutagen specific case I'm starting to use a [custom Docksal command](https://docs.docksal.io/fin/custom-commands) I created to initialize, start,...

It seems this issue was introduced in [Drupal 9 support commit](https://github.com/hechoendrupal/drupal-console/commit/fccd9f47de7ec8fc841507cc82c317f4d86d21a2) where the Drupal deprecated `system_rebuild_module_data()` function was replaced by `$this->extensionList->reset()->getList()` from the @extension.list.module service injected in src/Extension/Manager.php to fix...

It seems a problem related to the injection in fact deleting the @extension.list.module injection and so using `\Drupal::service('extension.list.module')->reset()->getList()` instead of `$this->extensionList->reset()->getList()` inside Manager::discoverExtensions in works again but with an error...