MySQL80Platform.php 379 Bytes
Newer Older
1 2
<?php

Michael Moravec's avatar
Michael Moravec committed
3 4
declare(strict_types=1);

5 6 7 8 9 10 11 12 13 14
namespace Doctrine\DBAL\Platforms;

/**
 * Provides the behavior, features and SQL dialect of the MySQL 8.0 (8.0 GA) database platform.
 */
class MySQL80Platform extends MySQL57Platform
{
    /**
     * {@inheritdoc}
     */
15
    protected function getReservedKeywordsClass() : string
16 17 18 19
    {
        return Keywords\MySQL80Keywords::class;
    }
}