/home/techb158/immovalet.com/vendor/doctrine/dbal/src/Platforms
Edit: /home/techb158/immovalet.com/vendor/doctrine/dbal/src/Platforms/MySQL57Platform.php (2004B)
getQuotedName($this)];
}
/**
* {@inheritdoc}
*
* @deprecated Implement {@link createReservedKeywordsList()} instead.
*/
protected function getReservedKeywordsClass()
{
Deprecation::triggerIfCalledFromOutside(
'doctrine/dbal',
'https://github.com/doctrine/dbal/issues/4510',
'MySQL57Platform::getReservedKeywordsClass() is deprecated,'
. ' use MySQL57Platform::createReservedKeywordsList() instead.'
);
return Keywords\MySQL57Keywords::class;
}
/**
* {@inheritdoc}
*/
protected function initializeDoctrineTypeMappings()
{
parent::initializeDoctrineTypeMappings();
$this->doctrineTypeMapping['json'] = Types::JSON;
}
}