diff options
author | Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com> | 2024-10-02 10:43:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-02 10:43:41 +0200 |
commit | 8290de3b9333ff692a1d56191aaa1bdd2b56872c (patch) | |
tree | 954e28f3427c627439e892726f69481ed7f3b200 /lib/public | |
parent | a13cc43d04be0ebf77b940606d25f9cb07a03b13 (diff) | |
parent | 914e8f9ce231c2d6604468beee75a816b3c24d56 (diff) | |
download | nextcloud-server-8290de3b9333ff692a1d56191aaa1bdd2b56872c.tar.gz nextcloud-server-8290de3b9333ff692a1d56191aaa1bdd2b56872c.zip |
Merge pull request #48077 from nextcloud/backport/47852/stable30
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/DB/QueryBuilder/IQueryBuilder.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/DB/QueryBuilder/IQueryBuilder.php b/lib/public/DB/QueryBuilder/IQueryBuilder.php index 5e3e792d298..2812f349c45 100644 --- a/lib/public/DB/QueryBuilder/IQueryBuilder.php +++ b/lib/public/DB/QueryBuilder/IQueryBuilder.php @@ -1041,7 +1041,7 @@ interface IQueryBuilder { * @return $this * @since 30.0.0 */ - public function hintShardKey(string $column, mixed $value, bool $overwrite = false); + public function hintShardKey(string $column, mixed $value, bool $overwrite = false): self; /** * Set the query to run across all shards if sharding is enabled. @@ -1049,7 +1049,7 @@ interface IQueryBuilder { * @return $this * @since 30.0.0 */ - public function runAcrossAllShards(); + public function runAcrossAllShards(): self; /** * Get a list of column names that are expected in the query output |