Completed
Push — master ( 17cd11...b7b153 )
by Gaetano
09:12 queued 03:28
created
tests/3LocalhostTest.php 1 patch
Spacing   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-include_once __DIR__ . '/../lib/xmlrpc.inc';
4
-include_once __DIR__ . '/../lib/xmlrpc_wrappers.inc';
3
+include_once __DIR__.'/../lib/xmlrpc.inc';
4
+include_once __DIR__.'/../lib/xmlrpc_wrappers.inc';
5 5
 
6
-include_once __DIR__ . '/parse_args.php';
6
+include_once __DIR__.'/parse_args.php';
7 7
 
8 8
 /**
9 9
  * Tests which involve interaction between the client and the server.
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
         // (but only if not called from subclass objects / multitests)
33 33
         if (function_exists('debug_backtrace') && strtolower(get_called_class()) == 'localhosttests') {
34 34
             $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
35
-            for ($i = 0; $i < count($trace); $i++) {
35
+            for ($i = 0; $i<count($trace); $i++) {
36 36
                 if (strpos($trace[$i]['function'], 'test') === 0) {
37 37
                     self::$failed_tests[$trace[$i]['function']] = true;
38 38
                     break;
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      */
54 54
     public function run(PHPUnit_Framework_TestResult $result = NULL)
55 55
     {
56
-        $this->testId = get_class($this) . '__' . $this->getName();
56
+        $this->testId = get_class($this).'__'.$this->getName();
57 57
 
58 58
         if ($result === NULL) {
59 59
             $result = $this->createResult();
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
         $this->args = argParser::getArgs();
85 85
 
86 86
         $server = explode(':', $this->args['LOCALSERVER']);
87
-        if (count($server) > 1) {
87
+        if (count($server)>1) {
88 88
             $this->client = new xmlrpc_client($this->args['URI'], $server[0], $server[1]);
89 89
         } else {
90 90
             $this->client = new xmlrpc_client($this->args['URI'], $this->args['LOCALSERVER']);
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         $this->client->request_compression = $this->request_compression;
95 95
         $this->client->accepted_compression = $this->accepted_compression;
96 96
 
97
-        $this->coverageScriptUrl = 'http://' . $this->args['LOCALSERVER'] . '/' . str_replace( '/demo/server/server.php', 'tests/phpunit_coverage.php', $this->args['URI'] );
97
+        $this->coverageScriptUrl = 'http://'.$this->args['LOCALSERVER'].'/'.str_replace('/demo/server/server.php', 'tests/phpunit_coverage.php', $this->args['URI']);
98 98
 
99 99
         if ($this->args['DEBUG'] == 1)
100 100
             ob_start();
@@ -130,9 +130,9 @@  discard block
 block discarded – undo
130 130
             return $r;
131 131
         }
132 132
         if (is_array($errorCode)) {
133
-            $this->assertContains($r->faultCode(), $errorCode, 'Error ' . $r->faultCode() . ' connecting to server: ' . $r->faultString());
133
+            $this->assertContains($r->faultCode(), $errorCode, 'Error '.$r->faultCode().' connecting to server: '.$r->faultString());
134 134
         } else {
135
-            $this->assertEquals($errorCode, $r->faultCode(), 'Error ' . $r->faultCode() . ' connecting to server: ' . $r->faultString());
135
+            $this->assertEquals($errorCode, $r->faultCode(), 'Error '.$r->faultCode().' connecting to server: '.$r->faultString());
136 136
         }
137 137
         if (!$r->faultCode()) {
138 138
             if ($returnResponse) {
@@ -154,20 +154,20 @@  discard block
 block discarded – undo
154 154
         $query = parse_url($this->client->path, PHP_URL_QUERY);
155 155
         parse_str($query, $vars);
156 156
         $query = http_build_query(array_merge($vars, $data));
157
-        $this->client->path = parse_url($this->client->path, PHP_URL_PATH) . '?' . $query;
157
+        $this->client->path = parse_url($this->client->path, PHP_URL_PATH).'?'.$query;
158 158
     }
159 159
 
160 160
     public function testString()
161 161
     {
162
-        $sendString = "here are 3 \"entities\": < > & " .
163
-            "and here's a dollar sign: \$pretendvarname and a backslash too: " . chr(92) .
164
-            " - isn't that great? \\\"hackery\\\" at it's best " .
165
-            " also don't want to miss out on \$item[0]. " .
166
-            "The real weird stuff follows: CRLF here" . chr(13) . chr(10) .
167
-            "a simple CR here" . chr(13) .
168
-            "a simple LF here" . chr(10) .
169
-            "and then LFCR" . chr(10) . chr(13) .
170
-            "last but not least weird names: G" . chr(252) . "nter, El" . chr(232) . "ne, and an xml comment closing tag: -->";
162
+        $sendString = "here are 3 \"entities\": < > & ".
163
+            "and here's a dollar sign: \$pretendvarname and a backslash too: ".chr(92).
164
+            " - isn't that great? \\\"hackery\\\" at it's best ".
165
+            " also don't want to miss out on \$item[0]. ".
166
+            "The real weird stuff follows: CRLF here".chr(13).chr(10).
167
+            "a simple CR here".chr(13).
168
+            "a simple LF here".chr(10).
169
+            "and then LFCR".chr(10).chr(13).
170
+            "last but not least weird names: G".chr(252)."nter, El".chr(232)."ne, and an xml comment closing tag: -->";
171 171
         $m = new xmlrpcmsg('examples.stringecho', array(
172 172
             new xmlrpcval($sendString, 'string'),
173 173
         ));
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
     public function testLatin1String()
189 189
     {
190 190
         $sendString =
191
-            "last but not least weird names: G" . chr(252) . "nter, El" . chr(232) . "ne";
191
+            "last but not least weird names: G".chr(252)."nter, El".chr(232)."ne";
192 192
         $x = '<?xml version="1.0" encoding="ISO-8859-1"?><methodCall><methodName>examples.stringecho</methodName><params><param><value>'.
193 193
             $sendString.
194 194
             '</value></param></params></methodCall>';
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
     public function testUtf8Method()
293 293
     {
294 294
         PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding = 'UTF-8';
295
-        $m = new xmlrpcmsg("tests.utf8methodname." . 'κόσμε', array(
295
+        $m = new xmlrpcmsg("tests.utf8methodname.".'κόσμε', array(
296 296
             new xmlrpcval('hello')
297 297
         ));
298 298
         $v = $this->send($m);
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
         ));
315 315
         $v = $this->send($m);
316 316
         if ($v) {
317
-            $this->assertEquals($a + $b, $v->scalarval());
317
+            $this->assertEquals($a+$b, $v->scalarval());
318 318
         }
319 319
     }
320 320
 
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
         ));
327 327
         $v = $this->send($m);
328 328
         if ($v) {
329
-            $this->assertEquals(12 - 23, $v->scalarval());
329
+            $this->assertEquals(12-23, $v->scalarval());
330 330
         }
331 331
     }
332 332
 
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
         if ($v) {
361 361
             $sz = $v->arraysize();
362 362
             $got = '';
363
-            for ($i = 0; $i < $sz; $i++) {
363
+            for ($i = 0; $i<$sz; $i++) {
364 364
                 $b = $v->arraymem($i);
365 365
                 if ($b->scalarval()) {
366 366
                     $got .= '1';
@@ -423,7 +423,7 @@  discard block
 block discarded – undo
423 423
             $got = '';
424 424
             $expected = '37210';
425 425
             $expect_array = array('ctLeftAngleBrackets', 'ctRightAngleBrackets', 'ctAmpersands', 'ctApostrophes', 'ctQuotes');
426
-            foreach($expect_array as $val) {
426
+            foreach ($expect_array as $val) {
427 427
                 $b = $v->structmem($val);
428 428
                 $got .= $b->me['int'];
429 429
             }
@@ -841,7 +841,7 @@  discard block
 block discarded – undo
841 841
     {
842 842
         // make a 'deep client copy' as the original one might have many properties set
843 843
         // also for speed only wrap one method of the whole server
844
-        $class = wrap_xmlrpc_server($this->client, array('simple_client_copy' => 0, 'method_filter' => '/examples\.getStateName/' ));
844
+        $class = wrap_xmlrpc_server($this->client, array('simple_client_copy' => 0, 'method_filter' => '/examples\.getStateName/'));
845 845
         if ($class == '') {
846 846
             $this->fail('Registration of remote server failed');
847 847
         } else {
@@ -876,9 +876,9 @@  discard block
 block discarded – undo
876 876
         $cookies = array(
877 877
             //'c1' => array(),
878 878
             'c2' => array('value' => 'c2'),
879
-            'c3' => array('value' => 'c3', 'expires' => time() + 60 * 60 * 24 * 30),
880
-            'c4' => array('value' => 'c4', 'expires' => time() + 60 * 60 * 24 * 30, 'path' => '/'),
881
-            'c5' => array('value' => 'c5', 'expires' => time() + 60 * 60 * 24 * 30, 'path' => '/', 'domain' => 'localhost'),
879
+            'c3' => array('value' => 'c3', 'expires' => time()+60 * 60 * 24 * 30),
880
+            'c4' => array('value' => 'c4', 'expires' => time()+60 * 60 * 24 * 30, 'path' => '/'),
881
+            'c5' => array('value' => 'c5', 'expires' => time()+60 * 60 * 24 * 30, 'path' => '/', 'domain' => 'localhost'),
882 882
         );
883 883
         $cookiesval = php_xmlrpc_encode($cookies);
884 884
         $m = new xmlrpcmsg('examples.setcookies', array($cookiesval));
@@ -926,10 +926,10 @@  discard block
 block discarded – undo
926 926
         $m = new xmlrpcmsg('examples.getcookies', array());
927 927
         foreach ($cookies as $cookie => $val) {
928 928
             $this->client->setCookie($cookie, $val);
929
-            $cookies[$cookie] = (string)$cookies[$cookie];
929
+            $cookies[$cookie] = (string) $cookies[$cookie];
930 930
         }
931 931
         $r = $this->client->send($m, $this->timeout, $this->method);
932
-        $this->assertEquals(0, $r->faultCode(), 'Error ' . $r->faultCode() . ' connecting to server: ' . $r->faultString());
932
+        $this->assertEquals(0, $r->faultCode(), 'Error '.$r->faultCode().' connecting to server: '.$r->faultString());
933 933
         if (!$r->faultCode()) {
934 934
             $v = $r->value();
935 935
             $v = php_xmlrpc_decode($v);
Please login to merge, or discard this patch.
tests/4LocalhostMultiTest.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-include_once __DIR__ . '/../lib/xmlrpc.inc';
4
-include_once __DIR__ . '/../lib/xmlrpc_wrappers.inc';
3
+include_once __DIR__.'/../lib/xmlrpc.inc';
4
+include_once __DIR__.'/../lib/xmlrpc_wrappers.inc';
5 5
 
6
-include_once __DIR__ . '/parse_args.php';
6
+include_once __DIR__.'/parse_args.php';
7 7
 
8
-include_once __DIR__ . '/3LocalhostTest.php';
8
+include_once __DIR__.'/3LocalhostTest.php';
9 9
 
10 10
 /**
11 11
  * Tests which stress http features of the library.
@@ -27,9 +27,9 @@  discard block
 block discarded – undo
27 27
         );
28 28
 
29 29
         $methods = array();
30
-        foreach(get_class_methods('LocalhostTest') as $method)
30
+        foreach (get_class_methods('LocalhostTest') as $method)
31 31
         {
32
-            if(strpos($method, 'test') === 0 && !in_array($method, $unsafeMethods))
32
+            if (strpos($method, 'test') === 0 && !in_array($method, $unsafeMethods))
33 33
             {
34 34
                 if (!isset(self::$failed_tests[$method])) {
35 35
                     $methods[$method] = array($method);
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      */
47 47
     public function testDeflate($method)
48 48
     {
49
-        if(!function_exists('gzdeflate'))
49
+        if (!function_exists('gzdeflate'))
50 50
         {
51 51
             $this->markTestSkipped('Zlib missing: cannot test deflate functionality');
52 52
             return;
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      */
65 65
     public function testGzip($method)
66 66
     {
67
-        if(!function_exists('gzdeflate'))
67
+        if (!function_exists('gzdeflate'))
68 68
         {
69 69
             $this->markTestSkipped('Zlib missing: cannot test gzip functionality');
70 70
             return;
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 
79 79
     public function testKeepAlives()
80 80
     {
81
-        if(!function_exists('curl_init'))
81
+        if (!function_exists('curl_init'))
82 82
         {
83 83
             $this->markTestSkipped('CURL missing: cannot test http 1.1');
84 84
             return;
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
      */
119 119
     public function testHttp11($method)
120 120
     {
121
-        if(!function_exists('curl_init'))
121
+        if (!function_exists('curl_init'))
122 122
         {
123 123
             $this->markTestSkipped('CURL missing: cannot test http 1.1');
124 124
             return;
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
      */
138 138
     public function testHttp10Curl($method)
139 139
     {
140
-        if(!function_exists('curl_init'))
140
+        if (!function_exists('curl_init'))
141 141
         {
142 142
             $this->markTestSkipped('CURL missing: cannot test http 1.1');
143 143
             return;
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
      */
158 158
     public function testHttp11Gzip($method)
159 159
     {
160
-        if(!function_exists('curl_init'))
160
+        if (!function_exists('curl_init'))
161 161
         {
162 162
             $this->markTestSkipped('CURL missing: cannot test http 1.1');
163 163
             return;
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
      */
178 178
     public function testHttp11Deflate($method)
179 179
     {
180
-        if(!function_exists('curl_init'))
180
+        if (!function_exists('curl_init'))
181 181
         {
182 182
             $this->markTestSkipped('CURL missing: cannot test http 1.1');
183 183
             return;
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
      */
198 198
     public function testHttp11Proxy($method)
199 199
     {
200
-        if(!function_exists('curl_init'))
200
+        if (!function_exists('curl_init'))
201 201
         {
202 202
             $this->markTestSkipped('CURL missing: cannot test http 1.1 w. proxy');
203 203
             return;
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
      */
223 223
     public function testHttps($method)
224 224
     {
225
-        if(!function_exists('curl_init'))
225
+        if (!function_exists('curl_init'))
226 226
         {
227 227
             $this->markTestSkipped('CURL missing: cannot test https functionality');
228 228
             return;
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
      */
275 275
     public function testHttpsProxy($method)
276 276
     {
277
-        if(!function_exists('curl_init'))
277
+        if (!function_exists('curl_init'))
278 278
         {
279 279
             $this->markTestSkipped('CURL missing: cannot test https w. proxy');
280 280
             return;
Please login to merge, or discard this patch.
lib/xmlrpcs.inc 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      */
53 53
     public function echoInput()
54 54
     {
55
-        $r = new PhpXmlRpc\Response(new PhpXmlRpc\Value("'Aha said I: '" . file_get_contents('php://input'), 'string'));
55
+        $r = new PhpXmlRpc\Response(new PhpXmlRpc\Value("'Aha said I: '".file_get_contents('php://input'), 'string'));
56 56
         print $r->serialize();
57 57
     }
58 58
 }
@@ -68,30 +68,30 @@  discard block
 block discarded – undo
68 68
     PhpXmlRpc\Server::xmlrpc_debugmsg($m);
69 69
 }
70 70
 
71
-function _xmlrpcs_getCapabilities($server, $m=null)
71
+function _xmlrpcs_getCapabilities($server, $m = null)
72 72
 {
73 73
     return PhpXmlRpc\Server::_xmlrpcs_getCapabilities($server, $m);
74 74
 }
75 75
 
76
-$_xmlrpcs_listMethods_sig=array(array(\PhpXmlRpc\Value::$xmlrpcArray));
77
-$_xmlrpcs_listMethods_doc='This method lists all the methods that the XML-RPC server knows how to dispatch';
78
-$_xmlrpcs_listMethods_sdoc=array(array('list of method names'));
79
-function _xmlrpcs_listMethods($server, $m=null) // if called in plain php values mode, second param is missing
76
+$_xmlrpcs_listMethods_sig = array(array(\PhpXmlRpc\Value::$xmlrpcArray));
77
+$_xmlrpcs_listMethods_doc = 'This method lists all the methods that the XML-RPC server knows how to dispatch';
78
+$_xmlrpcs_listMethods_sdoc = array(array('list of method names'));
79
+function _xmlrpcs_listMethods($server, $m = null) // if called in plain php values mode, second param is missing
80 80
 {
81 81
     return PhpXmlRpc\Server::_xmlrpcs_listMethods($server, $m);
82 82
 }
83 83
 
84
-$_xmlrpcs_methodSignature_sig=array(array(\PhpXmlRpc\Value::$xmlrpcArray, $GLOBALS['xmlrpcString']));
85
-$_xmlrpcs_methodSignature_doc='Returns an array of known signatures (an array of arrays) for the method name passed. If no signatures are known, returns a none-array (test for type != array to detect missing signature)';
86
-$_xmlrpcs_methodSignature_sdoc=array(array('list of known signatures, each sig being an array of xmlrpc type names', 'name of method to be described'));
84
+$_xmlrpcs_methodSignature_sig = array(array(\PhpXmlRpc\Value::$xmlrpcArray, $GLOBALS['xmlrpcString']));
85
+$_xmlrpcs_methodSignature_doc = 'Returns an array of known signatures (an array of arrays) for the method name passed. If no signatures are known, returns a none-array (test for type != array to detect missing signature)';
86
+$_xmlrpcs_methodSignature_sdoc = array(array('list of known signatures, each sig being an array of xmlrpc type names', 'name of method to be described'));
87 87
 function _xmlrpcs_methodSignature($server, $m)
88 88
 {
89 89
     return PhpXmlRpc\Server::_xmlrpcs_methodSignature($server, $m);
90 90
 }
91 91
 
92
-$_xmlrpcs_methodHelp_sig=array(array($GLOBALS['xmlrpcString'], $GLOBALS['xmlrpcString']));
93
-$_xmlrpcs_methodHelp_doc='Returns help text if defined for the method passed, otherwise returns an empty string';
94
-$_xmlrpcs_methodHelp_sdoc=array(array('method description', 'name of the method to be described'));
92
+$_xmlrpcs_methodHelp_sig = array(array($GLOBALS['xmlrpcString'], $GLOBALS['xmlrpcString']));
93
+$_xmlrpcs_methodHelp_doc = 'Returns help text if defined for the method passed, otherwise returns an empty string';
94
+$_xmlrpcs_methodHelp_sdoc = array(array('method description', 'name of the method to be described'));
95 95
 function _xmlrpcs_methodHelp($server, $m)
96 96
 {
97 97
     return PhpXmlRpc\Server::_xmlrpcs_methodHelp($server, $m);
Please login to merge, or discard this patch.
demo/client/mail.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     method)</p>
21 21
 <?php
22 22
 
23
-include_once __DIR__ . "/../../src/Autoloader.php";
23
+include_once __DIR__."/../../src/Autoloader.php";
24 24
 PhpXmlRpc\Autoloader::register();
25 25
 
26 26
 if (isset($_POST["mailto"]) && $_POST["mailto"]) {
@@ -44,8 +44,8 @@  discard block
 block discarded – undo
44 44
         print "<font color=\"red\">";
45 45
         print "Mail send failed<br/>\n";
46 46
         print "Fault: ";
47
-        print "Code: " . htmlspecialchars($resp->faultCode()) .
48
-            " Reason: '" . htmlspecialchars($resp->faultString()) . "'<br/>";
47
+        print "Code: ".htmlspecialchars($resp->faultCode()).
48
+            " Reason: '".htmlspecialchars($resp->faultString())."'<br/>";
49 49
         print "</font><br/>";
50 50
     }
51 51
 }
Please login to merge, or discard this patch.
src/Value.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
                     $this->me['struct'] = $val;
84 84
                     break;
85 85
                 default:
86
-                    error_log("XML-RPC: " . __METHOD__ . ": not a known type ($type)");
86
+                    error_log("XML-RPC: ".__METHOD__.": not a known type ($type)");
87 87
             }
88 88
         }
89 89
     }
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
         }
109 109
 
110 110
         if ($typeOf !== 1) {
111
-            error_log("XML-RPC: " . __METHOD__ . ": not a scalar type ($type)");
111
+            error_log("XML-RPC: ".__METHOD__.": not a scalar type ($type)");
112 112
             return 0;
113 113
         }
114 114
 
@@ -125,10 +125,10 @@  discard block
 block discarded – undo
125 125
 
126 126
         switch ($this->mytype) {
127 127
             case 1:
128
-                error_log('XML-RPC: ' . __METHOD__ . ': scalar xmlrpc value can have only one value');
128
+                error_log('XML-RPC: '.__METHOD__.': scalar xmlrpc value can have only one value');
129 129
                 return 0;
130 130
             case 3:
131
-                error_log('XML-RPC: ' . __METHOD__ . ': cannot add anonymous scalar to struct xmlrpc value');
131
+                error_log('XML-RPC: '.__METHOD__.': cannot add anonymous scalar to struct xmlrpc value');
132 132
                 return 0;
133 133
             case 2:
134 134
                 // we're adding a scalar value to an array here
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
 
171 171
             return 1;
172 172
         } else {
173
-            error_log('XML-RPC: ' . __METHOD__ . ': already initialized as a [' . $this->kindOf() . ']');
173
+            error_log('XML-RPC: '.__METHOD__.': already initialized as a ['.$this->kindOf().']');
174 174
             return 0;
175 175
         }
176 176
     }
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
 
202 202
             return 1;
203 203
         } else {
204
-            error_log('XML-RPC: ' . __METHOD__ . ': already initialized as a [' . $this->kindOf() . ']');
204
+            error_log('XML-RPC: '.__METHOD__.': already initialized as a ['.$this->kindOf().']');
205 205
             return 0;
206 206
         }
207 207
     }
@@ -240,20 +240,20 @@  discard block
 block discarded – undo
240 240
             case 1:
241 241
                 switch ($typ) {
242 242
                     case static::$xmlrpcBase64:
243
-                        $rs .= "<${typ}>" . base64_encode($val) . "</${typ}>";
243
+                        $rs .= "<${typ}>".base64_encode($val)."</${typ}>";
244 244
                         break;
245 245
                     case static::$xmlrpcBoolean:
246
-                        $rs .= "<${typ}>" . ($val ? '1' : '0') . "</${typ}>";
246
+                        $rs .= "<${typ}>".($val ? '1' : '0')."</${typ}>";
247 247
                         break;
248 248
                     case static::$xmlrpcString:
249 249
                         // G. Giunta 2005/2/13: do NOT use htmlentities, since
250 250
                         // it will produce named html entities, which are invalid xml
251
-                        $rs .= "<${typ}>" . Charset::instance()->encodeEntities($val, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "</${typ}>";
251
+                        $rs .= "<${typ}>".Charset::instance()->encodeEntities($val, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding)."</${typ}>";
252 252
                         break;
253 253
                     case static::$xmlrpcInt:
254 254
                     case static::$xmlrpcI4:
255 255
                     case static::$xmlrpcI8:
256
-                        $rs .= "<${typ}>" . (int)$val . "</${typ}>";
256
+                        $rs .= "<${typ}>".(int) $val."</${typ}>";
257 257
                         break;
258 258
                     case static::$xmlrpcDouble:
259 259
                         // avoid using standard conversion of float to string because it is locale-dependent,
@@ -261,15 +261,15 @@  discard block
 block discarded – undo
261 261
                         // sprintf('%F') could be most likely ok but it fails eg. on 2e-14.
262 262
                         // The code below tries its best at keeping max precision while avoiding exp notation,
263 263
                         // but there is of course no limit in the number of decimal places to be used...
264
-                        $rs .= "<${typ}>" . preg_replace('/\\.?0+$/', '', number_format((double)$val, 128, '.', '')) . "</${typ}>";
264
+                        $rs .= "<${typ}>".preg_replace('/\\.?0+$/', '', number_format((double) $val, 128, '.', ''))."</${typ}>";
265 265
                         break;
266 266
                     case static::$xmlrpcDateTime:
267 267
                         if (is_string($val)) {
268 268
                             $rs .= "<${typ}>${val}</${typ}>";
269 269
                         } elseif (is_a($val, 'DateTime')) {
270
-                            $rs .= "<${typ}>" . $val->format('Ymd\TH:i:s') . "</${typ}>";
270
+                            $rs .= "<${typ}>".$val->format('Ymd\TH:i:s')."</${typ}>";
271 271
                         } elseif (is_int($val)) {
272
-                            $rs .= "<${typ}>" . strftime("%Y%m%dT%H:%M:%S", $val) . "</${typ}>";
272
+                            $rs .= "<${typ}>".strftime("%Y%m%dT%H:%M:%S", $val)."</${typ}>";
273 273
                         } else {
274 274
                             // not really a good idea here: but what shall we output anyway? left for backward compat...
275 275
                             $rs .= "<${typ}>${val}</${typ}>";
@@ -291,14 +291,14 @@  discard block
 block discarded – undo
291 291
             case 3:
292 292
                 // struct
293 293
                 if ($this->_php_class) {
294
-                    $rs .= '<struct php_class="' . $this->_php_class . "\">\n";
294
+                    $rs .= '<struct php_class="'.$this->_php_class."\">\n";
295 295
                 } else {
296 296
                     $rs .= "<struct>\n";
297 297
                 }
298 298
                 $charsetEncoder = Charset::instance();
299 299
                 /** @var Value $val2 */
300 300
                 foreach ($val as $key2 => $val2) {
301
-                    $rs .= '<member><name>' . $charsetEncoder->encodeEntities($key2, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "</name>\n";
301
+                    $rs .= '<member><name>'.$charsetEncoder->encodeEntities($key2, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding)."</name>\n";
302 302
                     //$rs.=$this->serializeval($val2);
303 303
                     $rs .= $val2->serialize($charsetEncoding);
304 304
                     $rs .= "</member>\n";
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
334 334
         $val = reset($this->me);
335 335
         $typ = key($this->me);
336 336
 
337
-        return '<value>' . $this->serializedata($typ, $val, $charsetEncoding) . "</value>\n";
337
+        return '<value>'.$this->serializedata($typ, $val, $charsetEncoding)."</value>\n";
338 338
     }
339 339
 
340 340
     /**
Please login to merge, or discard this patch.
demo/client/introspect.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -6,20 +6,20 @@  discard block
 block discarded – undo
6 6
 <h3>The code demonstrates usage of multicall and introspection methods</h3>
7 7
 <?php
8 8
 
9
-include_once __DIR__ . "/../../src/Autoloader.php";
9
+include_once __DIR__."/../../src/Autoloader.php";
10 10
 PhpXmlRpc\Autoloader::register();
11 11
 
12 12
 function display_error($r)
13 13
 {
14 14
     print "An error occurred: ";
15
-    print "Code: " . $r->faultCode()
16
-        . " Reason: '" . $r->faultString() . "'<br/>";
15
+    print "Code: ".$r->faultCode()
16
+        . " Reason: '".$r->faultString()."'<br/>";
17 17
 }
18 18
 
19 19
 $client = new PhpXmlRpc\Client("http://phpxmlrpc.sourceforge.net/server.php");
20 20
 
21 21
 // First off, let's retrieve the list of methods available on the remote server
22
-print "<h3>methods available at http://" . $client->server . $client->path . "</h3>\n";
22
+print "<h3>methods available at http://".$client->server.$client->path."</h3>\n";
23 23
 $req = new PhpXmlRpc\Request('system.listMethods');
24 24
 $resp = $client->send($req);
25 25
 
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
     // Then, retrieve the signature and help text of each available method
32 32
     foreach ($v as $methodName) {
33
-        print "<h4>" . $methodName->scalarval() . "</h4>\n";
33
+        print "<h4>".$methodName->scalarval()."</h4>\n";
34 34
         // build messages first, add params later
35 35
         $m1 = new PhpXmlRpc\Request('system.methodHelp');
36 36
         $m2 = new PhpXmlRpc\Request('system.methodSignature');
@@ -61,13 +61,13 @@  discard block
 block discarded – undo
61 61
             if ($val->kindOf() == "array") {
62 62
                 foreach ($val as $x) {
63 63
                     $ret = $x[0];
64
-                    print "<code>" . htmlspecialchars($ret->scalarval()) . " "
65
-                        . htmlspecialchars($methodName->scalarval()) . "(";
66
-                    if ($x->count() > 1) {
67
-                        for ($k = 1; $k < $x->count(); $k++) {
64
+                    print "<code>".htmlspecialchars($ret->scalarval())." "
65
+                        . htmlspecialchars($methodName->scalarval())."(";
66
+                    if ($x->count()>1) {
67
+                        for ($k = 1; $k<$x->count(); $k++) {
68 68
                             $y = $x[$k];
69 69
                             print htmlspecialchars($y->scalarval());
70
-                            if ($k < $x->count() - 1) {
70
+                            if ($k<$x->count()-1) {
71 71
                                 print ", ";
72 72
                             }
73 73
                         }
Please login to merge, or discard this patch.
tests/benchmark.php 1 patch
Spacing   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -17,9 +17,9 @@  discard block
 block discarded – undo
17 17
 use PhpXmlRpc\Response;
18 18
 use PhpXmlRpc\Encoder;
19 19
 
20
-include_once __DIR__ . '/../vendor/autoload.php';
20
+include_once __DIR__.'/../vendor/autoload.php';
21 21
 
22
-include __DIR__ . '/parse_args.php';
22
+include __DIR__.'/parse_args.php';
23 23
 $args = argParser::getArgs();
24 24
 
25 25
 function begin_test($test_name, $test_case)
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     if (!isset($test_results[$test_name][$test_case])) {
40 40
         trigger_error('ending test that was not started');
41 41
     }
42
-    $test_results[$test_name][$test_case]['time'] = $end - $test_results[$test_name][$test_case]['time'];
42
+    $test_results[$test_name][$test_case]['time'] = $end-$test_results[$test_name][$test_case]['time'];
43 43
     $test_results[$test_name][$test_case]['result'] = $test_result;
44 44
     echo '.';
45 45
     flush();
@@ -73,24 +73,24 @@  discard block
 block discarded – undo
73 73
 }
74 74
 
75 75
 if ($is_web) {
76
-    echo "<h3>Using lib version: " . PhpXmlRpc::$xmlrpcVersion . " on PHP version: " . phpversion() . "</h3>\n";
76
+    echo "<h3>Using lib version: ".PhpXmlRpc::$xmlrpcVersion." on PHP version: ".phpversion()."</h3>\n";
77 77
     if ($xd) {
78
-        echo "<h4>XDEBUG profiling enabled: skipping remote tests. Trace file is: " . htmlspecialchars(xdebug_get_profiler_filename()) . "</h4>\n";
78
+        echo "<h4>XDEBUG profiling enabled: skipping remote tests. Trace file is: ".htmlspecialchars(xdebug_get_profiler_filename())."</h4>\n";
79 79
     }
80 80
     flush();
81 81
     ob_flush();
82 82
 } else {
83
-    echo "Using lib version: " . PhpXmlRpc::$xmlrpcVersion . " on PHP version: " . phpversion() . "\n";
83
+    echo "Using lib version: ".PhpXmlRpc::$xmlrpcVersion." on PHP version: ".phpversion()."\n";
84 84
     if ($xd) {
85
-        echo "XDEBUG profiling enabled: skipping remote tests\nTrace file is: " . xdebug_get_profiler_filename() . "\n";
85
+        echo "XDEBUG profiling enabled: skipping remote tests\nTrace file is: ".xdebug_get_profiler_filename()."\n";
86 86
     }
87 87
 }
88 88
 
89 89
 // test 'manual style' data encoding vs. 'automatic style' encoding
90 90
 begin_test('Data encoding (large array)', 'manual encoding');
91
-for ($i = 0; $i < $num_tests; $i++) {
91
+for ($i = 0; $i<$num_tests; $i++) {
92 92
     $vals = array();
93
-    for ($j = 0; $j < 10; $j++) {
93
+    for ($j = 0; $j<10; $j++) {
94 94
         $valarray = array();
95 95
         foreach ($data[$j] as $key => $val) {
96 96
             $values = array();
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 
116 116
 begin_test('Data encoding (large array)', 'automatic encoding');
117 117
 $encoder = new Encoder();
118
-for ($i = 0; $i < $num_tests; $i++) {
118
+for ($i = 0; $i<$num_tests; $i++) {
119 119
     $value = $encoder->encode($data, array('auto_dates'));
120 120
     $out = $value->serialize();
121 121
 }
@@ -123,8 +123,8 @@  discard block
 block discarded – undo
123 123
 
124 124
 if (function_exists('xmlrpc_set_type')) {
125 125
     begin_test('Data encoding (large array)', 'xmlrpc-epi encoding');
126
-    for ($i = 0; $i < $num_tests; $i++) {
127
-        for ($j = 0; $j < 10; $j++) {
126
+    for ($i = 0; $i<$num_tests; $i++) {
127
+        for ($j = 0; $j<10; $j++) {
128 128
             foreach ($keys as $k) {
129 129
                 xmlrpc_set_type($data[$j][$k][4], 'datetime');
130 130
                 xmlrpc_set_type($data[$j][$k][8], 'datetime');
@@ -138,18 +138,18 @@  discard block
 block discarded – undo
138 138
 // test 'old style' data decoding vs. 'automatic style' decoding
139 139
 $dummy = new Request('');
140 140
 $out = new Response($value);
141
-$in = '<?xml version="1.0" ?>' . "\n" . $out->serialize();
141
+$in = '<?xml version="1.0" ?>'."\n".$out->serialize();
142 142
 
143 143
 begin_test('Data decoding (large array)', 'manual decoding');
144
-for ($i = 0; $i < $num_tests; $i++) {
144
+for ($i = 0; $i<$num_tests; $i++) {
145 145
     $response = $dummy->ParseResponse($in, true);
146 146
     $value = $response->value();
147 147
     $result = array();
148
-    foreach($value as $val1) {
148
+    foreach ($value as $val1) {
149 149
         $out = array();
150
-        foreach($val1 as $name => $val) {
150
+        foreach ($val1 as $name => $val) {
151 151
             $out[$name] = array();
152
-            foreach($val as $data) {
152
+            foreach ($val as $data) {
153 153
                 $out[$name][] = $data->scalarval();
154 154
             }
155 155
         }
@@ -159,18 +159,18 @@  discard block
 block discarded – undo
159 159
 end_test('Data decoding (large array)', 'manual decoding', $result);
160 160
 
161 161
 begin_test('Data decoding (large array)', 'manual decoding deprecated');
162
-for ($i = 0; $i < $num_tests; $i++) {
162
+for ($i = 0; $i<$num_tests; $i++) {
163 163
     $response = $dummy->ParseResponse($in, true);
164 164
     $value = $response->value();
165 165
     $result = array();
166 166
     $l = $value->arraysize();
167
-    for ($k = 0; $k < $l; $k++) {
167
+    for ($k = 0; $k<$l; $k++) {
168 168
         $val1 = $value->arraymem($k);
169 169
         $out = array();
170
-        foreach($val1 as $name => $val) {
170
+        foreach ($val1 as $name => $val) {
171 171
             $out[$name] = array();
172 172
             $m = $val->arraysize();
173
-            for ($j = 0; $j < $m; $j++) {
173
+            for ($j = 0; $j<$m; $j++) {
174 174
                 $data = $val->arraymem($j);
175 175
                 $out[$name][] = $data->scalarval();
176 176
             }
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 end_test('Data decoding (large array)', 'manual decoding deprecated', $result);
182 182
 
183 183
 begin_test('Data decoding (large array)', 'automatic decoding');
184
-for ($i = 0; $i < $num_tests; $i++) {
184
+for ($i = 0; $i<$num_tests; $i++) {
185 185
     $response = $dummy->ParseResponse($in, true, 'phpvals');
186 186
     $value = $response->value();
187 187
 }
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
 
190 190
 if (function_exists('xmlrpc_decode')) {
191 191
     begin_test('Data decoding (large array)', 'xmlrpc-epi decoding');
192
-    for ($i = 0; $i < $num_tests; $i++) {
192
+    for ($i = 0; $i<$num_tests; $i++) {
193 193
         $response = $dummy->ParseResponse($in, true, 'xml');
194 194
         $value = xmlrpc_decode($response->value());
195 195
     }
@@ -203,15 +203,15 @@  discard block
 block discarded – undo
203 203
     $value = $encoder->encode($data1, array('auto_dates'));
204 204
     $req = new Request('interopEchoTests.echoValue', array($value));
205 205
     $reqs = array();
206
-    for ($i = 0; $i < 25; $i++) {
206
+    for ($i = 0; $i<25; $i++) {
207 207
         $reqs[] = $req;
208 208
     }
209 209
     $server = explode(':', $args['LOCALSERVER']);
210
-    if (count($server) > 1) {
211
-        $srv = $server[1] . '://' . $server[0] . $args['URI'];
210
+    if (count($server)>1) {
211
+        $srv = $server[1].'://'.$server[0].$args['URI'];
212 212
         $c = new Client($args['URI'], $server[0], $server[1]);
213 213
     } else {
214
-        $srv = $args['LOCALSERVER'] . $args['URI'];
214
+        $srv = $args['LOCALSERVER'].$args['URI'];
215 215
         $c = new Client($args['URI'], $args['LOCALSERVER']);
216 216
     }
217 217
     // do not interfere with http compression
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
     }
226 226
     begin_test($testName, 'http 10');
227 227
     $response = array();
228
-    for ($i = 0; $i < 25; $i++) {
228
+    for ($i = 0; $i<25; $i++) {
229 229
         $resp = $c->send($req);
230 230
         $response[] = $resp->value();
231 231
     }
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
     if (function_exists('curl_init')) {
235 235
         begin_test($testName, 'http 11 w. keep-alive');
236 236
         $response = array();
237
-        for ($i = 0; $i < 25; $i++) {
237
+        for ($i = 0; $i<25; $i++) {
238 238
             $resp = $c->send($req, 10, 'http11');
239 239
             $response[] = $resp->value();
240 240
         }
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
         $c->keepalive = false;
244 244
         begin_test($testName, 'http 11');
245 245
         $response = array();
246
-        for ($i = 0; $i < 25; $i++) {
246
+        for ($i = 0; $i<25; $i++) {
247 247
             $resp = $c->send($req, 10, 'http11');
248 248
             $response[] = $resp->value();
249 249
         }
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
 
264 264
         begin_test($testName, 'http 10 w. compression');
265 265
         $response = array();
266
-        for ($i = 0; $i < 25; $i++) {
266
+        for ($i = 0; $i<25; $i++) {
267 267
             $resp = $c->send($req);
268 268
             $response[] = $resp->value();
269 269
         }
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
         if (function_exists('curl_init')) {
273 273
             begin_test($testName, 'http 11 w. keep-alive and compression');
274 274
             $response = array();
275
-            for ($i = 0; $i < 25; $i++) {
275
+            for ($i = 0; $i<25; $i++) {
276 276
                 $resp = $c->send($req, 10, 'http11');
277 277
                 $response[] = $resp->value();
278 278
             }
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
             $c->keepalive = false;
282 282
             begin_test($testName, 'http 11 w. compression');
283 283
             $response = array();
284
-            for ($i = 0; $i < 25; $i++) {
284
+            for ($i = 0; $i<25; $i++) {
285 285
                 $resp = $c->send($req, 10, 'http11');
286 286
                 $response[] = $resp->value();
287 287
             }
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
 foreach ($test_results as $test => $results) {
303 303
     echo "\nTEST: $test\n";
304 304
     foreach ($results as $case => $data) {
305
-        echo "  $case: {$data['time']} secs - Output data CRC: " . crc32(serialize($data['result'])) . "\n";
305
+        echo "  $case: {$data['time']} secs - Output data CRC: ".crc32(serialize($data['result']))."\n";
306 306
     }
307 307
 }
308 308
 
Please login to merge, or discard this patch.
src/Client.php 1 patch
Spacing   +63 added lines, -63 removed lines patch added patch discarded remove patch
@@ -136,10 +136,10 @@  discard block
 block discarded – undo
136 136
             $server = $parts['host'];
137 137
             $path = isset($parts['path']) ? $parts['path'] : '';
138 138
             if (isset($parts['query'])) {
139
-                $path .= '?' . $parts['query'];
139
+                $path .= '?'.$parts['query'];
140 140
             }
141 141
             if (isset($parts['fragment'])) {
142
-                $path .= '#' . $parts['fragment'];
142
+                $path .= '#'.$parts['fragment'];
143 143
             }
144 144
             if (isset($parts['port'])) {
145 145
                 $port = $parts['port'];
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
             }
156 156
         }
157 157
         if ($path == '' || $path[0] != '/') {
158
-            $this->path = '/' . $path;
158
+            $this->path = '/'.$path;
159 159
         } else {
160 160
             $this->path = $path;
161 161
         }
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
         }*/
194 194
 
195 195
         // initialize user_agent string
196
-        $this->user_agent = PhpXmlRpc::$xmlrpcName . ' ' . PhpXmlRpc::$xmlrpcVersion;
196
+        $this->user_agent = PhpXmlRpc::$xmlrpcName.' '.PhpXmlRpc::$xmlrpcVersion;
197 197
     }
198 198
 
199 199
     /**
@@ -565,7 +565,7 @@  discard block
 block discarded – undo
565 565
      */
566 566
     protected function sendPayloadHTTP10($req, $server, $port, $timeout = 0, $username = '', $password = '',
567 567
         $authType = 1, $proxyHost = '', $proxyPort = 0, $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1,
568
-        $method='http')
568
+        $method = 'http')
569 569
     {
570 570
         //trigger_error('Method ' . __METHOD__ . ' is deprecated', E_USER_DEPRECATED);
571 571
 
@@ -597,7 +597,7 @@  discard block
 block discarded – undo
597 597
      * @param int $sslVersion
598 598
      * @return Response
599 599
      */
600
-    protected function sendPayloadHTTPS($req, $server, $port, $timeout = 0, $username = '',  $password = '',
600
+    protected function sendPayloadHTTPS($req, $server, $port, $timeout = 0, $username = '', $password = '',
601 601
         $authType = 1, $cert = '', $certPass = '', $caCert = '', $caCertDir = '', $proxyHost = '', $proxyPort = 0,
602 602
         $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $keepAlive = false, $key = '', $keyPass = '',
603 603
         $sslVersion = 0)
@@ -634,11 +634,11 @@  discard block
 block discarded – undo
634 634
      */
635 635
     protected function sendPayloadSocket($req, $server, $port, $timeout = 0, $username = '', $password = '',
636 636
         $authType = 1, $cert = '', $certPass = '', $caCert = '', $caCertDir = '', $proxyHost = '', $proxyPort = 0,
637
-        $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $method='http', $key = '', $keyPass = '',
637
+        $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $method = 'http', $key = '', $keyPass = '',
638 638
         $sslVersion = 0)
639 639
     {
640 640
         if ($port == 0) {
641
-            $port = ( $method === 'https' ) ? 443 : 80;
641
+            $port = ($method === 'https') ? 443 : 80;
642 642
         }
643 643
 
644 644
         // Only create the payload if it was not created previously
@@ -668,15 +668,15 @@  discard block
 block discarded – undo
668 668
         // thanks to Grant Rauscher <[email protected]> for this
669 669
         $credentials = '';
670 670
         if ($username != '') {
671
-            $credentials = 'Authorization: Basic ' . base64_encode($username . ':' . $password) . "\r\n";
671
+            $credentials = 'Authorization: Basic '.base64_encode($username.':'.$password)."\r\n";
672 672
             if ($authType != 1) {
673
-                error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth is supported with HTTP 1.0');
673
+                error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth is supported with HTTP 1.0');
674 674
             }
675 675
         }
676 676
 
677 677
         $acceptedEncoding = '';
678 678
         if (is_array($this->accepted_compression) && count($this->accepted_compression)) {
679
-            $acceptedEncoding = 'Accept-Encoding: ' . implode(', ', $this->accepted_compression) . "\r\n";
679
+            $acceptedEncoding = 'Accept-Encoding: '.implode(', ', $this->accepted_compression)."\r\n";
680 680
         }
681 681
 
682 682
         $proxyCredentials = '';
@@ -687,17 +687,17 @@  discard block
 block discarded – undo
687 687
             $connectServer = $proxyHost;
688 688
             $connectPort = $proxyPort;
689 689
             $transport = 'tcp';
690
-            $uri = 'http://' . $server . ':' . $port . $this->path;
690
+            $uri = 'http://'.$server.':'.$port.$this->path;
691 691
             if ($proxyUsername != '') {
692 692
                 if ($proxyAuthType != 1) {
693
-                    error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth to proxy is supported with HTTP 1.0');
693
+                    error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth to proxy is supported with HTTP 1.0');
694 694
                 }
695
-                $proxyCredentials = 'Proxy-Authorization: Basic ' . base64_encode($proxyUsername . ':' . $proxyPassword) . "\r\n";
695
+                $proxyCredentials = 'Proxy-Authorization: Basic '.base64_encode($proxyUsername.':'.$proxyPassword)."\r\n";
696 696
             }
697 697
         } else {
698 698
             $connectServer = $server;
699 699
             $connectPort = $port;
700
-            $transport = ( $method === 'https' ) ? 'tls' : 'tcp';
700
+            $transport = ($method === 'https') ? 'tls' : 'tcp';
701 701
             $uri = $this->path;
702 702
         }
703 703
 
@@ -708,45 +708,45 @@  discard block
 block discarded – undo
708 708
             $version = '';
709 709
             foreach ($this->cookies as $name => $cookie) {
710 710
                 if ($cookie['version']) {
711
-                    $version = ' $Version="' . $cookie['version'] . '";';
712
-                    $cookieHeader .= ' ' . $name . '="' . $cookie['value'] . '";';
711
+                    $version = ' $Version="'.$cookie['version'].'";';
712
+                    $cookieHeader .= ' '.$name.'="'.$cookie['value'].'";';
713 713
                     if ($cookie['path']) {
714
-                        $cookieHeader .= ' $Path="' . $cookie['path'] . '";';
714
+                        $cookieHeader .= ' $Path="'.$cookie['path'].'";';
715 715
                     }
716 716
                     if ($cookie['domain']) {
717
-                        $cookieHeader .= ' $Domain="' . $cookie['domain'] . '";';
717
+                        $cookieHeader .= ' $Domain="'.$cookie['domain'].'";';
718 718
                     }
719 719
                     if ($cookie['port']) {
720
-                        $cookieHeader .= ' $Port="' . $cookie['port'] . '";';
720
+                        $cookieHeader .= ' $Port="'.$cookie['port'].'";';
721 721
                     }
722 722
                 } else {
723
-                    $cookieHeader .= ' ' . $name . '=' . $cookie['value'] . ";";
723
+                    $cookieHeader .= ' '.$name.'='.$cookie['value'].";";
724 724
                 }
725 725
             }
726
-            $cookieHeader = 'Cookie:' . $version . substr($cookieHeader, 0, -1) . "\r\n";
726
+            $cookieHeader = 'Cookie:'.$version.substr($cookieHeader, 0, -1)."\r\n";
727 727
         }
728 728
 
729 729
         // omit port if default
730 730
         if (($port == 80 && in_array($method, array('http', 'http10'))) || ($port == 443 && $method == 'https')) {
731
-            $port =  '';
731
+            $port = '';
732 732
         } else {
733
-            $port = ':' . $port;
733
+            $port = ':'.$port;
734 734
         }
735 735
 
736
-        $op = 'POST ' . $uri . " HTTP/1.0\r\n" .
737
-            'User-Agent: ' . $this->user_agent . "\r\n" .
738
-            'Host: ' . $server . $port . "\r\n" .
739
-            $credentials .
740
-            $proxyCredentials .
741
-            $acceptedEncoding .
742
-            $encodingHdr .
743
-            'Accept-Charset: ' . implode(',', $this->accepted_charset_encodings) . "\r\n" .
744
-            $cookieHeader .
745
-            'Content-Type: ' . $req->content_type . "\r\nContent-Length: " .
746
-            strlen($payload) . "\r\n\r\n" .
736
+        $op = 'POST '.$uri." HTTP/1.0\r\n".
737
+            'User-Agent: '.$this->user_agent."\r\n".
738
+            'Host: '.$server.$port."\r\n".
739
+            $credentials.
740
+            $proxyCredentials.
741
+            $acceptedEncoding.
742
+            $encodingHdr.
743
+            'Accept-Charset: '.implode(',', $this->accepted_charset_encodings)."\r\n".
744
+            $cookieHeader.
745
+            'Content-Type: '.$req->content_type."\r\nContent-Length: ".
746
+            strlen($payload)."\r\n\r\n".
747 747
             $payload;
748 748
 
749
-        if ($this->debug > 1) {
749
+        if ($this->debug>1) {
750 750
             Logger::instance()->debugMessage("---SENDING---\n$op\n---END---");
751 751
         }
752 752
 
@@ -772,7 +772,7 @@  discard block
 block discarded – undo
772 772
         }
773 773
         $context = stream_context_create($contextOptions);
774 774
 
775
-        if ($timeout <= 0) {
775
+        if ($timeout<=0) {
776 776
             $connectTimeout = ini_get('default_socket_timeout');
777 777
         } else {
778 778
             $connectTimeout = $timeout;
@@ -784,7 +784,7 @@  discard block
 block discarded – undo
784 784
         $fp = @stream_socket_client("$transport://$connectServer:$connectPort", $this->errno, $this->errstr, $connectTimeout,
785 785
             STREAM_CLIENT_CONNECT, $context);
786 786
         if ($fp) {
787
-            if ($timeout > 0) {
787
+            if ($timeout>0) {
788 788
                 stream_set_timeout($fp, $timeout);
789 789
             }
790 790
         } else {
@@ -792,8 +792,8 @@  discard block
 block discarded – undo
792 792
                 $err = error_get_last();
793 793
                 $this->errstr = $err['message'];
794 794
             }
795
-            $this->errstr = 'Connect error: ' . $this->errstr;
796
-            $r = new Response(0, PhpXmlRpc::$xmlrpcerr['http_error'], $this->errstr . ' (' . $this->errno . ')');
795
+            $this->errstr = 'Connect error: '.$this->errstr;
796
+            $r = new Response(0, PhpXmlRpc::$xmlrpcerr['http_error'], $this->errstr.' ('.$this->errno.')');
797 797
 
798 798
             return $r;
799 799
         }
@@ -900,7 +900,7 @@  discard block
 block discarded – undo
900 900
             $encodingHdr = '';
901 901
         }
902 902
 
903
-        if ($this->debug > 1) {
903
+        if ($this->debug>1) {
904 904
             Logger::instance()->debugMessage("---SENDING---\n$payload\n---END---");
905 905
         }
906 906
 
@@ -910,7 +910,7 @@  discard block
 block discarded – undo
910 910
             } else {
911 911
                 $protocol = $method;
912 912
             }
913
-            $curl = curl_init($protocol . '://' . $server . ':' . $port . $this->path);
913
+            $curl = curl_init($protocol.'://'.$server.':'.$port.$this->path);
914 914
             if ($keepAlive) {
915 915
                 $this->xmlrpc_curl_handle = $curl;
916 916
             }
@@ -921,7 +921,7 @@  discard block
 block discarded – undo
921 921
         // results into variable
922 922
         curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
923 923
 
924
-        if ($this->debug > 1) {
924
+        if ($this->debug>1) {
925 925
             curl_setopt($curl, CURLOPT_VERBOSE, true);
926 926
             /// @todo allow callers to redirect curlopt_stderr to some stream which can be buffered
927 927
         }
@@ -947,7 +947,7 @@  discard block
 block discarded – undo
947 947
             }
948 948
         }
949 949
         // extra headers
950
-        $headers = array('Content-Type: ' . $req->content_type, 'Accept-Charset: ' . implode(',', $this->accepted_charset_encodings));
950
+        $headers = array('Content-Type: '.$req->content_type, 'Accept-Charset: '.implode(',', $this->accepted_charset_encodings));
951 951
         // if no keepalive is wanted, let the server know it in advance
952 952
         if (!$keepAlive) {
953 953
             $headers[] = 'Connection: close';
@@ -964,7 +964,7 @@  discard block
 block discarded – undo
964 964
         curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
965 965
         // timeout is borked
966 966
         if ($timeout) {
967
-            curl_setopt($curl, CURLOPT_TIMEOUT, $timeout == 1 ? 1 : $timeout - 1);
967
+            curl_setopt($curl, CURLOPT_TIMEOUT, $timeout == 1 ? 1 : $timeout-1);
968 968
         }
969 969
 
970 970
         if ($method == 'http10') {
@@ -974,11 +974,11 @@  discard block
 block discarded – undo
974 974
         }
975 975
 
976 976
         if ($username && $password) {
977
-            curl_setopt($curl, CURLOPT_USERPWD, $username . ':' . $password);
977
+            curl_setopt($curl, CURLOPT_USERPWD, $username.':'.$password);
978 978
             if (defined('CURLOPT_HTTPAUTH')) {
979 979
                 curl_setopt($curl, CURLOPT_HTTPAUTH, $authType);
980 980
             } elseif ($authType != 1) {
981
-                error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth is supported by the current PHP/curl install');
981
+                error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth is supported by the current PHP/curl install');
982 982
             }
983 983
         }
984 984
 
@@ -1019,13 +1019,13 @@  discard block
 block discarded – undo
1019 1019
             if ($proxyPort == 0) {
1020 1020
                 $proxyPort = 8080; // NB: even for HTTPS, local connection is on port 8080
1021 1021
             }
1022
-            curl_setopt($curl, CURLOPT_PROXY, $proxyHost . ':' . $proxyPort);
1022
+            curl_setopt($curl, CURLOPT_PROXY, $proxyHost.':'.$proxyPort);
1023 1023
             if ($proxyUsername) {
1024
-                curl_setopt($curl, CURLOPT_PROXYUSERPWD, $proxyUsername . ':' . $proxyPassword);
1024
+                curl_setopt($curl, CURLOPT_PROXYUSERPWD, $proxyUsername.':'.$proxyPassword);
1025 1025
                 if (defined('CURLOPT_PROXYAUTH')) {
1026 1026
                     curl_setopt($curl, CURLOPT_PROXYAUTH, $proxyAuthType);
1027 1027
                 } elseif ($proxyAuthType != 1) {
1028
-                    error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth to proxy is supported by the current PHP/curl install');
1028
+                    error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth to proxy is supported by the current PHP/curl install');
1029 1029
                 }
1030 1030
             }
1031 1031
         }
@@ -1036,7 +1036,7 @@  discard block
 block discarded – undo
1036 1036
         if (count($this->cookies)) {
1037 1037
             $cookieHeader = '';
1038 1038
             foreach ($this->cookies as $name => $cookie) {
1039
-                $cookieHeader .= $name . '=' . $cookie['value'] . '; ';
1039
+                $cookieHeader .= $name.'='.$cookie['value'].'; ';
1040 1040
             }
1041 1041
             curl_setopt($curl, CURLOPT_COOKIE, substr($cookieHeader, 0, -2));
1042 1042
         }
@@ -1047,13 +1047,13 @@  discard block
 block discarded – undo
1047 1047
 
1048 1048
         $result = curl_exec($curl);
1049 1049
 
1050
-        if ($this->debug > 1) {
1050
+        if ($this->debug>1) {
1051 1051
             $message = "---CURL INFO---\n";
1052 1052
             foreach (curl_getinfo($curl) as $name => $val) {
1053 1053
                 if (is_array($val)) {
1054 1054
                     $val = implode("\n", $val);
1055 1055
                 }
1056
-                $message .= $name . ': ' . $val . "\n";
1056
+                $message .= $name.': '.$val."\n";
1057 1057
             }
1058 1058
             $message .= '---END---';
1059 1059
             Logger::instance()->debugMessage($message);
@@ -1063,7 +1063,7 @@  discard block
 block discarded – undo
1063 1063
             /// @todo we should use a better check here - what if we get back '' or '0'?
1064 1064
 
1065 1065
             $this->errstr = 'no response';
1066
-            $resp = new Response(0, PhpXmlRpc::$xmlrpcerr['curl_fail'], PhpXmlRpc::$xmlrpcstr['curl_fail'] . ': ' . curl_error($curl));
1066
+            $resp = new Response(0, PhpXmlRpc::$xmlrpcerr['curl_fail'], PhpXmlRpc::$xmlrpcstr['curl_fail'].': '.curl_error($curl));
1067 1067
             curl_close($curl);
1068 1068
             if ($keepAlive) {
1069 1069
                 $this->xmlrpc_curl_handle = null;
@@ -1173,7 +1173,7 @@  discard block
 block discarded – undo
1173 1173
             $call['methodName'] = new Value($req->method(), 'string');
1174 1174
             $numParams = $req->getNumParams();
1175 1175
             $params = array();
1176
-            for ($i = 0; $i < $numParams; $i++) {
1176
+            for ($i = 0; $i<$numParams; $i++) {
1177 1177
                 $params[$i] = $req->getParam($i);
1178 1178
             }
1179 1179
             $call['params'] = new Value($params, 'array');
@@ -1199,15 +1199,15 @@  discard block
 block discarded – undo
1199 1199
             /// @todo test this code branch...
1200 1200
             $rets = $result->value();
1201 1201
             if (!is_array($rets)) {
1202
-                return false;       // bad return type from system.multicall
1202
+                return false; // bad return type from system.multicall
1203 1203
             }
1204 1204
             $numRets = count($rets);
1205 1205
             if ($numRets != count($reqs)) {
1206
-                return false;       // wrong number of return values.
1206
+                return false; // wrong number of return values.
1207 1207
             }
1208 1208
 
1209 1209
             $response = array();
1210
-            for ($i = 0; $i < $numRets; $i++) {
1210
+            for ($i = 0; $i<$numRets; $i++) {
1211 1211
                 $val = $rets[$i];
1212 1212
                 if (!is_array($val)) {
1213 1213
                     return false;
@@ -1215,7 +1215,7 @@  discard block
 block discarded – undo
1215 1215
                 switch (count($val)) {
1216 1216
                     case 1:
1217 1217
                         if (!isset($val[0])) {
1218
-                            return false;       // Bad value
1218
+                            return false; // Bad value
1219 1219
                         }
1220 1220
                         // Normal return value
1221 1221
                         $response[$i] = new Response($val[0], 0, '', 'phpvals');
@@ -1243,19 +1243,19 @@  discard block
 block discarded – undo
1243 1243
 
1244 1244
             $rets = $result->value();
1245 1245
             if ($rets->kindOf() != 'array') {
1246
-                return false;       // bad return type from system.multicall
1246
+                return false; // bad return type from system.multicall
1247 1247
             }
1248 1248
             $numRets = $rets->count();
1249 1249
             if ($numRets != count($reqs)) {
1250
-                return false;       // wrong number of return values.
1250
+                return false; // wrong number of return values.
1251 1251
             }
1252 1252
 
1253 1253
             $response = array();
1254
-            foreach($rets as $val) {
1254
+            foreach ($rets as $val) {
1255 1255
                 switch ($val->kindOf()) {
1256 1256
                     case 'array':
1257 1257
                         if ($val->count() != 1) {
1258
-                            return false;       // Bad value
1258
+                            return false; // Bad value
1259 1259
                         }
1260 1260
                         // Normal return value
1261 1261
                         $response[] = new Response($val[0]);
Please login to merge, or discard this patch.
demo/client/agesort.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@  discard block
 block discarded – undo
10 10
 <p></p>
11 11
 <?php
12 12
 
13
-include_once __DIR__ . "/../../src/Autoloader.php";
13
+include_once __DIR__."/../../src/Autoloader.php";
14 14
 PhpXmlRpc\Autoloader::register();
15 15
 
16 16
 $inAr = array("Dave" => 24, "Edd" => 45, "Joe" => 37, "Fred" => 27);
17 17
 print "This is the input data:<br/><pre>";
18 18
 foreach ($inAr as $key => $val) {
19
-    print $key . ", " . $val . "\n";
19
+    print $key.", ".$val."\n";
20 20
 }
21 21
 print "</pre>";
22 22
 
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     );
33 33
 }
34 34
 $v = new PhpXmlRpc\Value($p, "array");
35
-print "Encoded into xmlrpc format it looks like this: <pre>\n" . htmlentities($v->serialize()) . "</pre>\n";
35
+print "Encoded into xmlrpc format it looks like this: <pre>\n".htmlentities($v->serialize())."</pre>\n";
36 36
 
37 37
 // create client and message objects
38 38
 $req = new PhpXmlRpc\Request('examples.sortByAge', array($v));
@@ -52,15 +52,15 @@  discard block
 block discarded – undo
52 52
     foreach ($value as $struct) {
53 53
         $name = $struct["name"];
54 54
         $age = $struct["age"];
55
-        print htmlspecialchars($name->scalarval()) . ", " . htmlspecialchars($age->scalarval()) . "\n";
55
+        print htmlspecialchars($name->scalarval()).", ".htmlspecialchars($age->scalarval())."\n";
56 56
     }
57 57
 
58
-    print "<hr/>For nerds: I got this value back<br/><pre>" .
59
-        htmlentities($resp->serialize()) . "</pre><hr/>\n";
58
+    print "<hr/>For nerds: I got this value back<br/><pre>".
59
+        htmlentities($resp->serialize())."</pre><hr/>\n";
60 60
 } else {
61 61
     print "An error occurred:<pre>";
62
-    print "Code: " . htmlspecialchars($resp->faultCode()) .
63
-        "\nReason: '" . htmlspecialchars($resp->faultString()) . '\'</pre><hr/>';
62
+    print "Code: ".htmlspecialchars($resp->faultCode()).
63
+        "\nReason: '".htmlspecialchars($resp->faultString()).'\'</pre><hr/>';
64 64
 }
65 65
 
66 66
 ?>
Please login to merge, or discard this patch.