This commit is contained in:
Dennis Eichhorn 2020-07-23 20:50:43 +02:00
parent 013ce912f9
commit fc39d6d452

View File

@ -700,7 +700,7 @@ final class ModuleManager
public function get(string $module) : ModuleAbstract
{
$name = $this->generateModuleName($module);
if (!array_key_exists($name, $this->running)) {
if (!\array_key_exists($name, $this->running)) {
$this->initModule($module);
}