fix: use null coalescing operator for missing 'override' config key

fix: use null coalescing operator for missing 'override' config key

Config::get() does not accept a default value as a second argument.
When the 'override' key is absent, $settings->get('override', []) silently ignores the fallback and returns null, causing array_filter to operate on null instead of an empty array.

Closes #3588265

Merge request reports

Loading