Pārlūkot izejas kodu

Fix argument name mismatch.

Daniele Alessandri 14 gadi atpakaļ
vecāks
revīzija
48762ec876
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      lib/Predis.php

+ 2 - 2
lib/Predis.php

@@ -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);
     }