diff --git a/LibreNMS/Util/ModuleList.php b/LibreNMS/Util/ModuleList.php index b5cb89126ffa43f15f349ce7f0c6427ab62cc508..813efe2200dd92dacddb0656ea85ee422efb086d 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 @@ class ModuleList 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;