diff --git a/Module/ModuleManager.php b/Module/ModuleManager.php index 106412204..38314b8c0 100644 --- a/Module/ModuleManager.php +++ b/Module/ModuleManager.php @@ -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); }