From 4fa519af4eb414bce8139f5bfd5a531140a37eb0 Mon Sep 17 00:00:00 2001 From: Ivan Fedorov Date: Mon, 26 Aug 2024 16:10:31 +0200 Subject: [PATCH] fix return tag for redis stub --- redis/Redis.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis/Redis.php b/redis/Redis.php index 1f3431053..a66b3a27c 100644 --- a/redis/Redis.php +++ b/redis/Redis.php @@ -1307,7 +1307,7 @@ public function lMove(string $src, string $dst, string $wherefrom, string $where * @param string $whereto Where in the destination list to put the element. * - `Redis::LEFT`, or `Redis::RIGHT`. * @param float $timeout How long to block for an element. - * @return Redis|string|false; + * @return Redis|string|false * @example * $redis->lPush('numbers', 'one'); * $redis->blmove('numbers', 'odds', Redis::LEFT, Redis::LEFT 1.0);