From 929b8b9ecae4f76bbfe9033cf6d9daa4b150857c Mon Sep 17 00:00:00 2001 From: Stephen Abello Date: Thu, 5 Mar 2026 15:28:27 +0100 Subject: [PATCH] Fix CI by fixing code style --- application/themehandler.class.inc.php | 4 +++- application/utils.inc.php | 4 +++- .../src/Exception/AuthenticationException.php | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/application/themehandler.class.inc.php b/application/themehandler.class.inc.php index 5dc901bbe..ccaa49081 100644 --- a/application/themehandler.class.inc.php +++ b/application/themehandler.class.inc.php @@ -979,7 +979,9 @@ CSS; } } } - array_map(function ($sVariableValue) { return ltrim($sVariableValue); }, $aVariablesResults); + array_map(function ($sVariableValue) { + return ltrim($sVariableValue); + }, $aVariablesResults); return $aVariablesResults; } diff --git a/application/utils.inc.php b/application/utils.inc.php index c5d0861e3..50ebdc622 100644 --- a/application/utils.inc.php +++ b/application/utils.inc.php @@ -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 = []; diff --git a/datamodels/2.x/combodo-db-tools/src/Exception/AuthenticationException.php b/datamodels/2.x/combodo-db-tools/src/Exception/AuthenticationException.php index db113a217..78016f884 100644 --- a/datamodels/2.x/combodo-db-tools/src/Exception/AuthenticationException.php +++ b/datamodels/2.x/combodo-db-tools/src/Exception/AuthenticationException.php @@ -1,4 +1,5 @@