aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/DB
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2022-01-21 15:08:12 +0100
committerGitHub <noreply@github.com>2022-01-21 15:08:12 +0100
commitfccb98c8b654e4cdde33e0128a29de47d3f21f4d (patch)
tree0c3e8b46ccf5d376a565ab3debab162eff1ade33 /lib/public/DB
parent17025d6f814f1b7db6077df21d1740282766cf92 (diff)
parent1a1bdd9bc4e90153ef87381b908e0289ca74bc53 (diff)
downloadnextcloud-server-fccb98c8b654e4cdde33e0128a29de47d3f21f4d.tar.gz
nextcloud-server-fccb98c8b654e4cdde33e0128a29de47d3f21f4d.zip
Merge pull request #30379 from nextcloud/feature/add-comments-reactions
Add comments reactions
Diffstat (limited to 'lib/public/DB')
-rw-r--r--lib/public/DB/QueryBuilder/IQueryBuilder.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/DB/QueryBuilder/IQueryBuilder.php b/lib/public/DB/QueryBuilder/IQueryBuilder.php
index 7829696970c..669003246d9 100644
--- a/lib/public/DB/QueryBuilder/IQueryBuilder.php
+++ b/lib/public/DB/QueryBuilder/IQueryBuilder.php
@@ -470,7 +470,7 @@ interface IQueryBuilder {
* ->from('users', 'u')
* </code>
*
- * @param string $from The table.
+ * @param string|IQueryFunction $from The table.
* @param string|null $alias The alias of the table.
*
* @return $this This QueryBuilder instance.
@@ -994,7 +994,7 @@ interface IQueryBuilder {
/**
* Returns the table name quoted and with database prefix as needed by the implementation
*
- * @param string $table
+ * @param string|IQueryFunction $table
* @return string
* @since 9.0.0
*/