diff --git a/docs/en/reference/platforms.rst b/docs/en/reference/platforms.rst index 3835fd62f1..0d7eb1dd4e 100644 --- a/docs/en/reference/platforms.rst +++ b/docs/en/reference/platforms.rst @@ -33,15 +33,16 @@ can be found as follows: MySQL ^^^^^ -- ``MySQLPlatform`` for version 5.7 (5.7.9 GA) and above. -- ``MySQL80Platform`` for version 8.0 (8.0 GA) and above. -- ``MySQL84Platform`` for version 8.4 (8.4 GA) and above. +- ``MySQLPlatform`` for version 5.7.9 and above. +- ``MySQL80Platform`` for version 8.0 and above. +- ``MySQL84Platform`` for version 8.4 and above. MariaDB ^^^^^ -- ``MariaDBPlatform`` for version 10.4 (10.4.3 GA) and above. -- ``MariaDB1052Platform`` for version 10.5 (10.5.2 GA) and above. +- ``MariaDBPlatform`` for version 10.4.3 and above. +- ``MariaDb1052Platform`` for version 10.5.2 and above. +- ``MariaDb1060Platform`` for version 10.6 and above. Oracle ^^^^^^ diff --git a/src/Platforms/MariaDB1052Platform.php b/src/Platforms/MariaDB1052Platform.php index 2a26ab0bc7..e15081b901 100644 --- a/src/Platforms/MariaDB1052Platform.php +++ b/src/Platforms/MariaDB1052Platform.php @@ -8,7 +8,7 @@ use Doctrine\DBAL\Schema\TableDiff; /** - * Provides the behavior, features and SQL dialect of the MariaDB 10.5 (10.5.2 GA) database platform. + * Provides the behavior, features and SQL dialect of the MariaDB 10.5 database platform. * * @deprecated This class will be removed once support for MariaDB 10.4 is dropped. */ diff --git a/src/Platforms/MariaDB1060Platform.php b/src/Platforms/MariaDB1060Platform.php index 6f45f1021f..028473d461 100644 --- a/src/Platforms/MariaDB1060Platform.php +++ b/src/Platforms/MariaDB1060Platform.php @@ -7,7 +7,7 @@ use Doctrine\DBAL\SQL\Builder\SelectSQLBuilder; /** - * Provides the behavior, features and SQL dialect of the MariaDB 10.6 (10.6.0 GA) database platform. + * Provides the behavior, features and SQL dialect of the MariaDB 10.6 database platform. */ class MariaDB1060Platform extends MariaDB1052Platform { diff --git a/src/Platforms/MySQL80Platform.php b/src/Platforms/MySQL80Platform.php index 8d4baa08cb..f5517e9778 100644 --- a/src/Platforms/MySQL80Platform.php +++ b/src/Platforms/MySQL80Platform.php @@ -9,7 +9,7 @@ use Doctrine\DBAL\SQL\Builder\SelectSQLBuilder; /** - * Provides the behavior, features and SQL dialect of the MySQL 8.0 (8.0 GA) database platform. + * Provides the behavior, features and SQL dialect of the MySQL 8.0 database platform. * * @deprecated This class will be removed once support for MySQL 5.7 is dropped. */ diff --git a/src/Platforms/MySQL84Platform.php b/src/Platforms/MySQL84Platform.php index 84b3a3bdec..0c304318c6 100644 --- a/src/Platforms/MySQL84Platform.php +++ b/src/Platforms/MySQL84Platform.php @@ -8,7 +8,7 @@ use Doctrine\DBAL\Platforms\Keywords\MySQL84Keywords; /** - * Provides the behavior, features and SQL dialect of the MySQL 8.4 (8.4 GA) database platform. + * Provides the behavior, features and SQL dialect of the MySQL 8.4 database platform. */ class MySQL84Platform extends MySQL80Platform {