Skip to content

Commit 2fa8279

Browse files
committed
Fix PostgreSQL platform class name
1 parent f62b10b commit 2fa8279

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
@@ -73,7 +73,7 @@ protected function getPlatformIdentifier(DoctrineAbstractPlatform $platform): st
7373
if ($platform instanceof DoctrineMySQLPlatform) {
7474
return 'mysql';
7575
}
76-
if ($platform instanceof DoctrinePostgreSqlPlatform) {
76+
if ($platform instanceof DoctrinePostgreSQLPlatform) {
7777
return 'postgresql';
7878
}
7979
if ($platform instanceof DoctrineSQLitePlatform) {

0 commit comments

Comments
 (0)