From e21037b25c115b22c639a95dc1c568c0e8587b66 Mon Sep 17 00:00:00 2001 From: Matthew Weier O'Phinney Date: Thu, 13 Sep 2012 11:48:02 -0500 Subject: [PATCH] [zendframework/zf2#2306] Fixed failing XmlRpc test - CS does not apply within strings --- src/Client/ServerProxy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client/ServerProxy.php b/src/Client/ServerProxy.php index ab0cf5b..e6ddd1e 100644 --- a/src/Client/ServerProxy.php +++ b/src/Client/ServerProxy.php @@ -61,7 +61,7 @@ public function __construct(XMLRPCClient $client, $namespace = '') */ public function __get($namespace) { - $namespace = ltrim("$this->namespace . $namespace", '.'); + $namespace = ltrim("$this->namespace.$namespace", '.'); if (!isset($this->cache[$namespace])) { $this->cache[$namespace] = new $this($this->client, $namespace); }