Skip to content

Commit

Permalink
fix: psalm
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Mattos <[email protected]>
  • Loading branch information
vitormattos committed Nov 14, 2024
1 parent 9ef99db commit b8bb489
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion lib/Db/SignRequestMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ private function getFilesAssociatedFilesWithMeQueryBuilder(string $userId, ?arra
// when the database is PostgreSQL. The problem is that the command
// addGroupBy add quotes over all text send as argument. With
// PostgreSQL json columns don't have problem if not added to group by.
if (!$qb->getConnection()->getDatabasePlatform() instanceof PostgreSQLPlatform) {
if ($qb->getConnection()->getDatabaseProvider() !== IDBConnection::PLATFORM_POSTGRES) {
$qb->addGroupBy('f.metadata');
}

Expand Down
5 changes: 0 additions & 5 deletions tests/psalm-baseline.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,6 @@
<code><![CDATA[QueryBuilder]]></code>
</UndefinedClass>
</file>
<file src="lib/Db/SignRequestMapper.php">
<UndefinedClass>
<code><![CDATA[PostgreSQLPlatform]]></code>
</UndefinedClass>
</file>
<file src="lib/Files/TemplateLoader.php">
<InvalidArgument>
<code><![CDATA[addServiceListener]]></code>
Expand Down

0 comments on commit b8bb489

Please sign in to comment.