From 446678dadff5ea4493fb8b36f22471ffe6658a24 Mon Sep 17 00:00:00 2001 From: Shaverdova Elena Date: Tue, 6 Aug 2019 15:03:16 +0200 Subject: [PATCH] In Redis.client second parameter is optional, see $redis->client('list') --- src/Redis.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Redis.php b/src/Redis.php index c04c9cc..440dda5 100644 --- a/src/Redis.php +++ b/src/Redis.php @@ -4388,7 +4388,7 @@ public function clearLastError() * $redis->client('kill', ); // Kill the process at ip:port * */ - public function client($command, $value) + public function client($command, $value = '') { }