Преглед на файлове

Removed a superfluous method call.

Daniele Alessandri преди 15 години
родител
ревизия
b757afe492
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      lib/Predis.php

+ 1 - 1
lib/Predis.php

@@ -105,7 +105,7 @@ class Client {
     }
 
     public function __call($method, $arguments) {
-        $command = $this->createCommand($method, $arguments);
+        $command = $this->_serverProfile->createCommand($method, $arguments);
         return $this->executeCommand($command);
     }