From 5c1b39e0ef98f0f6b059404cc3c8bbc42a93816a Mon Sep 17 00:00:00 2001 From: Maksim Kamashev Date: Sat, 10 Aug 2019 00:21:12 +0300 Subject: [PATCH] Change false to bool --- src/Redis.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Redis.php b/src/Redis.php index bfb384d..55eab0a 100644 --- a/src/Redis.php +++ b/src/Redis.php @@ -3594,7 +3594,7 @@ public function hGet($key, $hashKey) * * @param string $key * - * @return int|false the number of items in a hash, FALSE if the key doesn't exist or isn't a hash + * @return int|bool the number of items in a hash, FALSE if the key doesn't exist or isn't a hash * * @link https://redis.io/commands/hlen * @example @@ -3617,7 +3617,7 @@ public function hLen($key) * @param string $hashKey1 * @param string ...$otherHashKeys * - * @return int|false Number of deleted fields + * @return int|bool Number of deleted fields * * @link https://redis.io/commands/hdel * @example