diff options
author | Joas Schilling <coding@schilljs.com> | 2022-05-23 12:56:47 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2022-05-23 12:56:47 +0200 |
commit | be4faebc4720e0824396ba0a47e65e168097e802 (patch) | |
tree | 1eaacc7e79b686548709909ad1d1152e0bac88c1 /lib | |
parent | 8d599c341023c5fe850da9bdbc3807a277a61151 (diff) | |
download | nextcloud-server-be4faebc4720e0824396ba0a47e65e168097e802.tar.gz nextcloud-server-be4faebc4720e0824396ba0a47e65e168097e802.zip |
Adjust docs to the same as the implementation
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-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. |