diff --git a/LibreNMS/Util/ModuleList.php b/LibreNMS/Util/ModuleList.php index b5cb89126ffa..813efe2200dd 100644 --- a/LibreNMS/Util/ModuleList.php +++ b/LibreNMS/Util/ModuleList.php @@ -39,7 +39,8 @@ class ModuleList */ public function __construct( public readonly array $overrides = [], - ) {} + ) { + } /** * @param array $overrides @@ -47,7 +48,7 @@ public function __construct( public static function fromUserOverrides(array $overrides): self { $modules = []; - $flattened = array_merge(...array_map(fn($item) => explode(',', $item), $overrides)); + $flattened = array_merge(...array_map(fn ($item) => explode(',', $item), $overrides)); foreach ($flattened as $module) { $enabled = true;