diff --git a/typo3/sysext/core/Classes/Database/Query/Expression/ExpressionBuilder.php b/typo3/sysext/core/Classes/Database/Query/Expression/ExpressionBuilder.php
index eb5fcb04ba86761c7e51b45c8b5a11128a69c7e2..a7046d47d14784fa500ddcb979de61f040dc5c22 100644
--- a/typo3/sysext/core/Classes/Database/Query/Expression/ExpressionBuilder.php
+++ b/typo3/sysext/core/Classes/Database/Query/Expression/ExpressionBuilder.php
@@ -38,10 +38,6 @@ use Doctrine\DBAL\Query\Expression\ExpressionBuilder as DoctrineExpressionBuilde
  */
 class ExpressionBuilder extends DoctrineExpressionBuilder
 {
-    final public const QUOTE_NOTHING = 0;
-    final public const QUOTE_IDENTIFIER = 1;
-    final public const QUOTE_PARAMETER = 2;
-
     public function __construct(protected readonly DoctrineConnection $connection)
     {
         // parent::__construct() skipped by intention, otherwise the private property
diff --git a/typo3/sysext/core/Documentation/Changelog/13.0/Breaking-102875-ExpressionBuilderChanges.rst b/typo3/sysext/core/Documentation/Changelog/13.0/Breaking-102875-ExpressionBuilderChanges.rst
index c7bfc612ca17aacf8aa5dad9a2f5c1a7a3699019..3b55af20638031ee74761c45ee0b7eaf49a2d303 100644
--- a/typo3/sysext/core/Documentation/Changelog/13.0/Breaking-102875-ExpressionBuilderChanges.rst
+++ b/typo3/sysext/core/Documentation/Changelog/13.0/Breaking-102875-ExpressionBuilderChanges.rst
@@ -11,11 +11,19 @@ See :issue:`102875`
 Description
 ===========
 
-Signature changes:
+Signature changes for following methods
+---------------------------------------
 
 *  :php:`ExpressionBuilder::literal(string $value)`: Value must be a string now.
 *  :php:`ExpressionBuilder::trim(): Only `TrimMode` enum for `$position` argument.
 
+Following class constants have been removed
+-------------------------------------------
+
+*   :php:`QUOTE_NOTHING`: Not used since already TYPO3 v12 and Doctrine DBAL 3.x.
+*   :php:`QUOTE_IDENTIFIER`: Not used since already TYPO3 v12 and Doctrine DBAL 3.x.
+*   :php:`QUOTE_PARAMETER`: Not used since already TYPO3 v12 and Doctrine DBAL 3.x.
+
 Impact
 ======