1 .. include:: ../../Includes.txt
3 ===============================================
4 Breaking: #77379 - Doctrine: Typo3DbQueryParser
5 ===============================================
12 While migrating the database endpoint for the persistence functionality of Extbase to Doctrine DBAL, the `Typo3DbQueryParser` class
13 has been completely rewritten to work on a `QueryBuilder` object instead of plain arrays and strings. The PHP method
14 `Typo3DbQueryParser->parseQuery()` has been removed, instead the new equivalent
15 `Typo3DbQueryParser->convertQueryToDoctrineQueryBuilder()` has been introduced.
17 Additionally, the PHP method `Typo3DBBackend->injectQueryParser()` has been removed, as the `Typo3DbQueryParser` class is not a
18 singleton instance anymore but always rebuilt when needed.
24 Calling one of the methods above will result in a fatal PHP error.
27 Affected Installations
28 ======================
30 TYPO3 instances with custom Extbase database backend and parsing functionality.
36 Switch to Doctrine DBAL and `Typo3DbQueryParser->convertQueryToDoctrineQueryBuilder()` which results in the same behaviour.