fix(lexicon): only filter out null default

Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
This commit is contained in:
Maxence Lange 2025-07-30 08:58:52 -01:00
parent 33c4fe504d
commit f32d865716

View file

@ -1136,7 +1136,7 @@ class AppConfig implements IAppConfig {
]);
}
return array_filter($details);
return array_filter($details, static fn($v): bool => ($v !== null));
}
/**