Fix argument name mismatch.

This commit is contained in:
Daniele Alessandri
2011-01-08 01:42:39 +01:00
parent 3b2681f2c8
commit 48762ec876
+2 -2
View File
@@ -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);
}