We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcd0853 commit 9f2a900Copy full SHA for 9f2a900
1 file changed
src/Client.php
@@ -15,7 +15,10 @@ class Client extends Base {
15
16
public string $name;
17
18
- public function __construct( string $name = 'default', string|array $redis_nodes = [] ) {
+ /**
19
+ * @param string|array $redis_nodes Standalone Redis host:port string or Redis Cluster seed node list.
20
+ */
21
+ public function __construct( string $name = 'default', $redis_nodes = [] ) {
22
$this->name = $name;
23
24
if ( ! $redis_nodes ) {
0 commit comments