diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-09-29 14:41:53 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-09-29 14:41:53 +0200 |
commit | 826e234ecfa37b831df85c80606df6875574527f (patch) | |
tree | 1acf25c04293da9803dc9a04a01edb02cdf84f19 /build | |
parent | d647025f616c95137be269cc7467c23671a08aa2 (diff) | |
download | nextcloud-server-826e234ecfa37b831df85c80606df6875574527f.tar.gz nextcloud-server-826e234ecfa37b831df85c80606df6875574527f.zip |
Correctly handle Redis::keys returning false
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'build')
-rw-r--r-- | build/stubs/redis.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/stubs/redis.php b/build/stubs/redis.php index e4872b81556..1a91e942fc4 100644 --- a/build/stubs/redis.php +++ b/build/stubs/redis.php @@ -2177,7 +2177,7 @@ class Redis * * @param string $pattern pattern, using '*' as a wildcard * - * @return array string[] The keys that match a certain pattern. + * @return string[]|false The keys that match a certain pattern. * * @link https://redis.io/commands/keys * @example |