Fix CI by fixing code style

This commit is contained in:
Stephen Abello
2026-03-05 15:28:27 +01:00
parent 3b8e079cf1
commit 929b8b9eca
3 changed files with 8 additions and 4 deletions

View File

@@ -2081,7 +2081,9 @@ SQL;
}
// Remove any remaining nulls (for positions that weren't referenced)
$aReplacements = array_filter($aReplacements, static function ($val) { return $val !== null; });
$aReplacements = array_filter($aReplacements, static function ($val) {
return $val !== null;
});
} else {
// For non-positional, we need to map each position
$aReplacements = [];