-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Replace
\PDO::PARAM_*
constants with Connection::PARAM_*
This change replaces the `\PDO::PARAM_*` constants with the TYPO3 `\TYPO3\CMS\Core\Database\Connection::PARAM_*` alternatives. This aligns the testing-framework with the core and the communicated best-practice. The direct dependency to `ext-pdo` is removed right away. Note: `doctrine/dbal 4+` dropps support for the \PDO integer constants. Using the `Connection` constants allows us to change the mapping in that class and consuming code, like extensions or this package automaticlly uses the correct enum class on upgrade. Used command(s): ```shell composer remove ext-pdo ``` Releases: main, 7
- Loading branch information
Showing
3 changed files
with
9 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters