Skip to content

Commit 7f35866

Browse files
committed
Fix updated invocation
1 parent a1f615a commit 7f35866

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Clue/Redis/Server/Server.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public function handleRequest(Request $request, Client $client)
9999
{
100100
$this->emit('request', array($request, $client));
101101

102-
$ret = $this->business->invoke($request->getCommand(), $request->getArgs());
102+
$ret = $this->business->invoke($request);
103103
if ($ret !== null) {
104104
$client->write($ret);
105105
}

0 commit comments

Comments
 (0)