aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/AppFramework
diff options
context:
space:
mode:
authorjld3103 <jld3103yt@gmail.com>2023-03-31 09:28:22 +0200
committerjld3103 <jld3103yt@gmail.com>2023-04-07 09:49:42 +0200
commitb153340b6292c0790666e0542677bcf47f2e9b59 (patch)
treeb13fb2b10cc38833a2a05ec44a410188a571c6a6 /lib/public/AppFramework
parent012624743917cf9388f2abd33760a50d83d497e9 (diff)
downloadnextcloud-server-b153340b6292c0790666e0542677bcf47f2e9b59.tar.gz
nextcloud-server-b153340b6292c0790666e0542677bcf47f2e9b59.zip
Add type hints for mappers
Signed-off-by: jld3103 <jld3103yt@gmail.com>
Diffstat (limited to 'lib/public/AppFramework')
-rw-r--r--lib/public/AppFramework/Db/QBMapper.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/public/AppFramework/Db/QBMapper.php b/lib/public/AppFramework/Db/QBMapper.php
index 57f4cba2ff5..cbe3d39d4d7 100644
--- a/lib/public/AppFramework/Db/QBMapper.php
+++ b/lib/public/AppFramework/Db/QBMapper.php
@@ -55,8 +55,7 @@ abstract class QBMapper {
/**
* @param IDBConnection $db Instance of the Db abstraction layer
* @param string $tableName the name of the table. set this to allow entity
- * @param string|null $entityClass the name of the entity that the sql should be
- * @psalm-param class-string<T>|null $entityClass the name of the entity that the sql should be
+ * @param class-string<T>|null $entityClass the name of the entity that the sql should be
* mapped to queries without using sql
* @since 14.0.0
*/