mirror of
https://github.com/predis/predis.git
synced 2026-09-04 06:47:20 +00:00
Fix argument name mismatch.
This commit is contained in:
+2
-2
@@ -1234,8 +1234,8 @@ class TcpConnection extends ConnectionBase implements IConnectionSingle {
|
||||
return $skipparse ? $response : $command->parseResponse($response);
|
||||
}
|
||||
|
||||
public function rawCommand($serializedCommand) {
|
||||
$this->writeBytes($rawCommandData);
|
||||
public function rawCommand($buffer) {
|
||||
$this->writeBytes($buffer);
|
||||
return $this->_protocol->read($this);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user