PHP CS Fixer

This commit is contained in:
lenaick.moreira
2026-03-02 15:19:31 +01:00
parent 3c60a80f9b
commit 091d99b08f
3 changed files with 8 additions and 4 deletions

View File

@@ -2084,7 +2084,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 = [];