From fc39d6d4528a187869d7e952d5c3b1277eecf332 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 23 Jul 2020 20:50:43 +0200 Subject: [PATCH] autofix --- Module/ModuleManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }