Skip to content

Commit c223973

Browse files
authored
Merge pull request #10 from ayacoo/codex/fehler-in-der-codebasis-suchen-und-beheben
Fix PostgreSQL platform check
2 parents 5a3c2c1 + b84f3f4 commit c223973

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Classes/Domain/Repository/FileRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ protected function getPlatformIdentifier(DoctrineAbstractPlatform $platform): st
7272
if ($platform instanceof DoctrineMySQLPlatform) {
7373
return 'mysql';
7474
}
75-
if ($platform instanceof DoctrinePostgreSqlPlatform) {
75+
if ($platform instanceof DoctrinePostgreSQLPlatform) {
7676
return 'postgresql';
7777
}
7878
if ($platform instanceof DoctrineSQLitePlatform) {

0 commit comments

Comments
 (0)