Ver Fonte

Removed a superfluous method call.

Daniele Alessandri há 15 anos atrás
pai
commit
b757afe492
1 ficheiros alterados com 1 adições e 1 exclusões
  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);
     }