From 79afef01a8178c1106f750bffea1445f0c90307e Mon Sep 17 00:00:00 2001 From: Dimitri BOUTEILLE Date: Wed, 29 Jan 2025 09:47:49 +0100 Subject: [PATCH 1/2] Fix bad phpdoc Magento\Framework\DB\Adapter\AdapterInterface::quoteColumnAs() --- lib/internal/Magento/Framework/DB/Adapter/AdapterInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/internal/Magento/Framework/DB/Adapter/AdapterInterface.php b/lib/internal/Magento/Framework/DB/Adapter/AdapterInterface.php index d4c6108295809..3afc9a44cb840 100644 --- a/lib/internal/Magento/Framework/DB/Adapter/AdapterInterface.php +++ b/lib/internal/Magento/Framework/DB/Adapter/AdapterInterface.php @@ -663,7 +663,7 @@ public function quoteIdentifier($ident, $auto = false); * Quote a column identifier and alias. * * @param string|array|\Zend_Db_Expr $ident The identifier or expression. - * @param string $alias An alias for the column. + * @param string|null $alias An alias for the column. * @param boolean $auto If true, heed the AUTO_QUOTE_IDENTIFIERS config option. * @return string The quoted identifier and alias. */ From 8c1fec1a0f51168df2fec106c01296254af2d98c Mon Sep 17 00:00:00 2001 From: engcom-Dash Date: Tue, 16 Sep 2025 13:56:30 +0530 Subject: [PATCH 2/2] Static test fix --- .../Framework/DB/Adapter/AdapterInterface.php | 52 +++++++++---------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/lib/internal/Magento/Framework/DB/Adapter/AdapterInterface.php b/lib/internal/Magento/Framework/DB/Adapter/AdapterInterface.php index 3afc9a44cb840..e6f60fb70b445 100644 --- a/lib/internal/Magento/Framework/DB/Adapter/AdapterInterface.php +++ b/lib/internal/Magento/Framework/DB/Adapter/AdapterInterface.php @@ -1,7 +1,7 @@