PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
doctrine
/
dbal
/
src
/
Platforms
<?php namespace Doctrine\DBAL\Platforms; use Doctrine\Deprecations\Deprecation; /** * Provides the behavior, features and SQL dialect of the MySQL 8.0 (8.0 GA) database platform. */ class MySQL80Platform extends MySQL57Platform { /** * {@inheritdoc} * * @deprecated Implement {@link createReservedKeywordsList()} instead. */ protected function getReservedKeywordsClass() { Deprecation::triggerIfCalledFromOutside( 'doctrine/dbal', 'https://github.com/doctrine/dbal/issues/4510', 'MySQL80Platform::getReservedKeywordsClass() is deprecated,' . ' use MySQL80Platform::createReservedKeywordsList() instead.' ); return Keywords\MySQL80Keywords::class; } }
[-] DateIntervalUnit.php
[edit]
[-] MySQLPlatform.php
[edit]
[+]
..
[-] MySQL80Platform.php
[edit]
[-] PostgreSQL100Platform.php
[edit]
[-] OraclePlatform.php
[edit]
[-] TrimMode.php
[edit]
[-] MariaDb1027Platform.php
[edit]
[-] DB2Platform.php
[edit]
[+]
Keywords
[-] AbstractPlatform.php
[edit]
[-] PostgreSQL94Platform.php
[edit]
[-] MySQL57Platform.php
[edit]
[-] SQLServer2012Platform.php
[edit]
[-] SqlitePlatform.php
[edit]