浏览代码

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