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:
parent
fa602c3525
commit
6a0da10473
|
@ -228,7 +228,11 @@ class Manager
|
|||
} else {
|
||||
$module = new Module($this->app, $name, $basedir);
|
||||
}
|
||||
$module->register();
|
||||
|
||||
if ($name !== 'ipl' && $name !== 'reactbundle') {
|
||||
$module->register();
|
||||
}
|
||||
|
||||
$this->loadedModules[$name] = $module;
|
||||
return $this;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue