summaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2021-11-15 19:55:14 +0100
committerGitHub <noreply@github.com>2021-11-15 19:55:14 +0100
commit7c4e76b9a8ab8392d37c4d700dbee528905819a9 (patch)
tree83b3ac4388e169b6f3496d22009d0e7d8097ecac /lib/public
parentd706c7e0625c87d1c3a5cde683d09abc9e920567 (diff)
parent18f3d836a540b834d8fa98f4d3315a071940adb1 (diff)
downloadnextcloud-server-7c4e76b9a8ab8392d37c4d700dbee528905819a9.tar.gz
nextcloud-server-7c4e76b9a8ab8392d37c4d700dbee528905819a9.zip
Merge pull request #29714 from nextcloud/bump-doctrine-dbal
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/DB/QueryBuilder/IQueryBuilder.php4
-rw-r--r--lib/public/IDBConnection.php4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/public/DB/QueryBuilder/IQueryBuilder.php b/lib/public/DB/QueryBuilder/IQueryBuilder.php
index 5d1116075d8..7829696970c 100644
--- a/lib/public/DB/QueryBuilder/IQueryBuilder.php
+++ b/lib/public/DB/QueryBuilder/IQueryBuilder.php
@@ -280,7 +280,7 @@ interface IQueryBuilder {
/**
* Sets the position of the first result to retrieve (the "offset").
*
- * @param integer $firstResult The first result to return.
+ * @param int $firstResult The first result to return.
*
* @return $this This QueryBuilder instance.
* @since 8.2.0
@@ -299,7 +299,7 @@ interface IQueryBuilder {
/**
* Sets the maximum number of results to retrieve (the "limit").
*
- * @param integer $maxResults The maximum number of results to retrieve.
+ * @param int|null $maxResults The maximum number of results to retrieve.
*
* @return $this This QueryBuilder instance.
* @since 8.2.0
diff --git a/lib/public/IDBConnection.php b/lib/public/IDBConnection.php
index cedf0429869..2fa7fa1ad36 100644
--- a/lib/public/IDBConnection.php
+++ b/lib/public/IDBConnection.php
@@ -86,8 +86,8 @@ interface IDBConnection {
/**
* Used to abstract the ownCloud database access away
* @param string $sql the sql query with ? placeholder for params
- * @param int $limit the maximum number of rows
- * @param int $offset from which row we want to start
+ * @param int|null $limit the maximum number of rows
+ * @param int|null $offset from which row we want to start
* @return IPreparedStatement The prepared statement.
* @since 6.0.0
* @throws Exception since 21.0.0