Skip to content
Snippets Groups Projects
Commit cd003b87 authored by Stefan Bürk's avatar Stefan Bürk
Browse files

[!!!][TASK] Remove `ExpressionBuilder::QUOTE_*` constants

The `ExpressionBUilder::QUOTE_*` class constants are
unused already with TYPO3 v12 and `Doctrine DBAL 3.x`
and do not serve any purpose anymore.

This change removes them now to keep the house clean.

Resolves: #102919
Related: #102875
Releases: main
Change-Id: Idc991625c8ce4799452f098bff675c744d4cb37d
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/82639


Tested-by: default avatarStefan Bürk <stefan@buerk.tech>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
Reviewed-by: default avatarStefan Bürk <stefan@buerk.tech>
Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
parent 7f44fee9
Branches
Tags
No related merge requests found
......@@ -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
......
......@@ -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
======
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment