From b757afe492464fbfd5c7e944a413355b8133b97f Mon Sep 17 00:00:00 2001 From: Daniele Alessandri Date: Sun, 27 Dec 2009 10:57:23 +0100 Subject: [PATCH] Removed a superfluous method call. --- lib/Predis.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Predis.php b/lib/Predis.php index fcc56bd3..267f50a4 100644 --- a/lib/Predis.php +++ b/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); }