diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2022-05-24 06:52:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-24 06:52:53 +0200 |
commit | 1d14f08b56ace508d88fe550f94bf59a680dacf6 (patch) | |
tree | 4dc34a96f199d440d22088d05ad15f50e2a157bb | |
parent | 17bdfb12843566dd9b0539584a49f85e0b96dddf (diff) | |
parent | be4faebc4720e0824396ba0a47e65e168097e802 (diff) | |
download | nextcloud-server-1d14f08b56ace508d88fe550f94bf59a680dacf6.tar.gz nextcloud-server-1d14f08b56ace508d88fe550f94bf59a680dacf6.zip |
Merge pull request #32554 from nextcloud/followup/32378/adjust-docs-on-interface
Adjust docs to the same as the implementation
-rw-r--r-- | lib/public/DB/QueryBuilder/IQueryBuilder.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/DB/QueryBuilder/IQueryBuilder.php b/lib/public/DB/QueryBuilder/IQueryBuilder.php index 9b074db563e..218b7d8cb2d 100644 --- a/lib/public/DB/QueryBuilder/IQueryBuilder.php +++ b/lib/public/DB/QueryBuilder/IQueryBuilder.php @@ -820,7 +820,7 @@ interface IQueryBuilder { * Specifies an ordering for the query results. * Replaces any previously specified orderings, if any. * - * @param string|IQueryFunction $sort The ordering expression. + * @param string|IQueryFunction|ILiteral|IParameter $sort The ordering expression. * @param string $order The ordering direction. * * @return $this This QueryBuilder instance. |