Skip to content

Commit 1219b3f

Browse files
committed
PostgreSqlPlatform
1 parent f5ccafe commit 1219b3f

File tree

3 files changed

+265
-10
lines changed

3 files changed

+265
-10
lines changed

config/config_test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ doctrine:
1313
dbal:
1414
# driver: 'pdo_sqlite'
1515
# memory: true
16-
driver: 'pdo_pgsql'
17-
host: '%database_host%'
18-
port: '5433'
19-
dbname: 'phplistdb'
20-
user: '%database_user%'
21-
password: '%database_password%'
22-
charset: UTF8
16+
driver: 'pdo_mysql'
17+
host: '%database_host%'
18+
port: '%database_port%'
19+
dbname: 'phplist'
20+
user: '%database_user%'
21+
password: '%database_password%'
22+
charset: UTF8
2323

src/Core/Doctrine/OnlyOrmTablesFilter.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ class OnlyOrmTablesFilter
1818

1919
public function __construct(private readonly EntityManagerInterface $entityManager) {}
2020

21-
/**
22-
* Doctrine (DBAL 3+) may pass strings OR AbstractAsset (Table, Sequence, etc.).
23-
*/
2421
public function __invoke(string|AbstractAsset $asset): bool
2522
{
2623
$name = \is_string($asset) ? $asset : $asset->getName();

0 commit comments

Comments
 (0)