blob: d52ca74a2b2699548541ac9b430847b8d9611aff (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Platforms\MySQL;
/** @internal */
interface CollationMetadataProvider
{
public function getCollationCharset(string $collation): ?string;
}
|