We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1206916 commit 956e855Copy full SHA for 956e855
src/Redis.php
@@ -39,10 +39,11 @@ public function __construct(array $config = [])
39
*
40
* @param string $name
41
* @param array $arguments
42
+ * @return mixed
43
*/
- public function __call(string $name, array $arguments): void
44
+ public function __call(string $name, array $arguments)
45
{
- $this->client->$name(...$arguments);
46
+ return $this->client->$name(...$arguments);
47
}
48
49
/**
0 commit comments