Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Add MySqlPlatform for DBAL version <= 3.2
Doctrine uses `MySqlPlatform` as common parent class for all mysql-ish platforms up until DBAL version 3.2. Startig with DBAL version 3.3, the common class is `AbstractMySQLPlatform`. This is especially important for all DBAL versions matching semver "^2.13". Existing: @see https://github.com/doctrine/dbal/blob/3.2.2/src/Platforms/MySQLPlatform.php @see https://github.com/doctrine/dbal/blob/3.3.0/src/Platforms/AbstractMySQLPlatform.php Missing: @see https://github.com/doctrine/dbal/blob/3.2.2/src/Platforms/AbstractMySQLPlatform.php @see https://github.com/doctrine/dbal/blob/3.3.0/src/Platforms/MySQLPlatform.php
- Loading branch information