Manager: Don't register the ipl and reactbundle module

Both are superseded by their respective library. This
way we make sure there are no competing auto loaders.
This commit is contained in:
Johannes Meyer 2021-06-22 12:50:59 +02:00
parent fa602c3525
commit 6a0da10473
1 changed files with 5 additions and 1 deletions

View File

@ -228,7 +228,11 @@ class Manager
} else {
$module = new Module($this->app, $name, $basedir);
}
if ($name !== 'ipl' && $name !== 'reactbundle') {
$module->register();
}
$this->loadedModules[$name] = $module;
return $this;
}