Skip to content

Commit 5c1b39e

Browse files
author
Maksim Kamashev
committed
Change false to bool
1 parent b858c70 commit 5c1b39e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Redis.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3594,7 +3594,7 @@ public function hGet($key, $hashKey)
35943594
*
35953595
* @param string $key
35963596
*
3597-
* @return int|false the number of items in a hash, FALSE if the key doesn't exist or isn't a hash
3597+
* @return int|bool the number of items in a hash, FALSE if the key doesn't exist or isn't a hash
35983598
*
35993599
* @link https://redis.io/commands/hlen
36003600
* @example
@@ -3617,7 +3617,7 @@ public function hLen($key)
36173617
* @param string $hashKey1
36183618
* @param string ...$otherHashKeys
36193619
*
3620-
* @return int|false Number of deleted fields
3620+
* @return int|bool Number of deleted fields
36213621
*
36223622
* @link https://redis.io/commands/hdel
36233623
* @example

0 commit comments

Comments
 (0)