Explorar el Código

Removed a superfluous method call.

Daniele Alessandri hace 15 años
padre
commit
b757afe492
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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);
     }