Removed a superfluous method call.

This commit is contained in:
Daniele Alessandri
2009-12-27 10:57:23 +01:00
parent 75a06019f8
commit b757afe492
+1 -1
View File
@@ -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);
}