Fix Doctrine deprecations (#4608)

This commit is contained in:
Kevin Papst
2024-02-02 15:48:11 +01:00
committed by GitHub
parent 49e69d1ae3
commit c2afebbb5e
11 changed files with 446 additions and 369 deletions

View File

@@ -30,7 +30,6 @@ abstract class AbstractMigration extends BaseAbstractMigration
}
/**
* @param Schema $schema
* @throws Exception
*/
public function preUp(Schema $schema): void
@@ -39,7 +38,6 @@ abstract class AbstractMigration extends BaseAbstractMigration
}
/**
* @param Schema $schema
* @throws Exception
*/
public function preDown(Schema $schema): void
@@ -52,7 +50,7 @@ abstract class AbstractMigration extends BaseAbstractMigration
*
* @throws Exception
*/
protected function abortIfPlatformNotSupported(): void
private function abortIfPlatformNotSupported(): void
{
$platform = $this->connection->getDatabasePlatform();
if (!($platform instanceof MySQLPlatform)) {

View File

@@ -0,0 +1,64 @@
<?php
/*
* This file is part of the Kimai time-tracking app.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Doctrine;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Tools\DsnParser;
final class DsnParserFactory
{
/**
* Copied here from Doctrine v3 DriverManager, as they are going to be removed in Doctrine 4.
*
* @var array<string, string>
*/
private static array $driverSchemeAliases = [
'db2' => 'ibm_db2',
'mssql' => 'pdo_sqlsrv',
'mysql' => 'pdo_mysql',
'mysql2' => 'pdo_mysql', // Amazon RDS, for some weird reason
'postgres' => 'pdo_pgsql',
'postgresql' => 'pdo_pgsql',
'pgsql' => 'pdo_pgsql',
'sqlite' => 'pdo_sqlite',
'sqlite3' => 'pdo_sqlite',
];
public function create(): DsnParser
{
return new DsnParser(self::$driverSchemeAliases);
}
/**
* @return array<string, array<mixed>|bool|AbstractPlatform|int|string>
*/
public function parse(
#[\SensitiveParameter]
string $dsn
): array
{
// see https://github.com/doctrine/dbal/pull/5843
$options = $this->create()->parse($dsn);
$options = array_merge(
$options,
[
'charset' => 'utf8mb4',
'defaultTableOptions' => [
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
]
]
);
return $options;
}
}