Keywords
9 months ago
MySQL
2 years ago
AbstractMySQLPlatform.php
9 months ago
AbstractPlatform.php
9 months ago
DateIntervalUnit.php
2 years ago
MariaDBPlatform.php
2 years ago
MariaDb1010Platform.php
9 months ago
MariaDb1027Platform.php
2 years ago
MariaDb1043Platform.php
2 years ago
MariaDb1052Platform.php
2 years ago
MariaDb1060Platform.php
2 years ago
MariaDb110700Platform.php
9 months ago
MySQL57Platform.php
2 years ago
MySQL80Platform.php
2 years ago
MySQL84Platform.php
9 months ago
MySQLPlatform.php
2 years ago
PostgreSQL120Platform.php
9 months ago
TrimMode.php
2 years ago
index.php
2 years ago
MySQL80Platform.php
18 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Doctrine\DBAL\Platforms; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use MailPoetVendor\Doctrine\DBAL\SQL\Builder\SelectSQLBuilder; |
| 5 | use MailPoetVendor\Doctrine\Deprecations\Deprecation; |
| 6 | class MySQL80Platform extends MySQL57Platform |
| 7 | { |
| 8 | protected function getReservedKeywordsClass() |
| 9 | { |
| 10 | Deprecation::triggerIfCalledFromOutside('doctrine/dbal', 'https://github.com/doctrine/dbal/issues/4510', 'MySQL80Platform::getReservedKeywordsClass() is deprecated,' . ' use MySQL80Platform::createReservedKeywordsList() instead.'); |
| 11 | return Keywords\MySQL80Keywords::class; |
| 12 | } |
| 13 | public function createSelectSQLBuilder() : SelectSQLBuilder |
| 14 | { |
| 15 | return AbstractPlatform::createSelectSQLBuilder(); |
| 16 | } |
| 17 | } |
| 18 |