Completed
Pull Request — master (#57)
by Elan
03:18
created
src/Encoder.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
                 return $xmlrpcVal->scalarval();
76 76
             case 'array':
77 77
                 $arr = array();
78
-                foreach($xmlrpcVal as $value) {
78
+                foreach ($xmlrpcVal as $value) {
79 79
                     $arr[] = $this->decode($value, $options);
80 80
                 }
81 81
 
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
             case 'msg':
106 106
                 $paramCount = $xmlrpcVal->getNumParams();
107 107
                 $arr = array();
108
-                for ($i = 0; $i < $paramCount; $i++) {
108
+                for ($i = 0; $i<$paramCount; $i++) {
109 109
                     $arr[] = $this->decode($xmlrpcVal->getParam($i), $options);
110 110
                 }
111 111
 
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
                     $xmlrpcVal = new Value($phpVal->format('Ymd\TH:i:s'), Value::$xmlrpcStruct);
184 184
                 } else {
185 185
                     $arr = array();
186
-                    foreach($phpVal as $k => $v) {
186
+                    foreach ($phpVal as $k => $v) {
187 187
                         $arr[$k] = $this->encode($v, $options);
188 188
                     }
189 189
                     $xmlrpcVal = new Value($arr, Value::$xmlrpcStruct);
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
                 break;
206 206
             case 'resource':
207 207
                 if (in_array('extension_api', $options)) {
208
-                    $xmlrpcVal = new Value((int)$phpVal, Value::$xmlrpcInt);
208
+                    $xmlrpcVal = new Value((int) $phpVal, Value::$xmlrpcInt);
209 209
                 } else {
210 210
                     $xmlrpcVal = new Value();
211 211
                 }
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
                     if (extension_loaded('mbstring')) {
249 249
                         $xmlVal = mb_convert_encoding($xmlVal, 'UTF-8', $valEncoding);
250 250
                     } else {
251
-                        error_log('XML-RPC: ' . __METHOD__ . ': invalid charset encoding of xml text: ' . $valEncoding);
251
+                        error_log('XML-RPC: '.__METHOD__.': invalid charset encoding of xml text: '.$valEncoding);
252 252
                     }
253 253
                 }
254 254
             }
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
             return false;
281 281
         }
282 282
         xml_parser_free($parser);
283
-        if ($xmlRpcParser->_xh['isf'] > 1) {
283
+        if ($xmlRpcParser->_xh['isf']>1) {
284 284
             // test that $xmlrpc->_xh['value'] is an obj, too???
285 285
 
286 286
             error_log($xmlRpcParser->_xh['isf_reason']);
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
                 return $r;
302 302
             case 'methodcall':
303 303
                 $req = new Request($xmlRpcParser->_xh['method']);
304
-                for ($i = 0; $i < count($xmlRpcParser->_xh['params']); $i++) {
304
+                for ($i = 0; $i<count($xmlRpcParser->_xh['params']); $i++) {
305 305
                     $req->addParam($xmlRpcParser->_xh['params'][$i]);
306 306
                 }
307 307
 
Please login to merge, or discard this patch.
tests/3LocalhostTest.php 1 patch
Spacing   +32 added lines, -32 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) {
@@ -147,15 +147,15 @@  discard block
 block discarded – undo
147 147
 
148 148
     public function testString()
149 149
     {
150
-        $sendString = "here are 3 \"entities\": < > & " .
151
-            "and here's a dollar sign: \$pretendvarname and a backslash too: " . chr(92) .
152
-            " - isn't that great? \\\"hackery\\\" at it's best " .
153
-            " also don't want to miss out on \$item[0]. " .
154
-            "The real weird stuff follows: CRLF here" . chr(13) . chr(10) .
155
-            "a simple CR here" . chr(13) .
156
-            "a simple LF here" . chr(10) .
157
-            "and then LFCR" . chr(10) . chr(13) .
158
-            "last but not least weird names: G" . chr(252) . "nter, El" . chr(232) . "ne, and an xml comment closing tag: -->";
150
+        $sendString = "here are 3 \"entities\": < > & ".
151
+            "and here's a dollar sign: \$pretendvarname and a backslash too: ".chr(92).
152
+            " - isn't that great? \\\"hackery\\\" at it's best ".
153
+            " also don't want to miss out on \$item[0]. ".
154
+            "The real weird stuff follows: CRLF here".chr(13).chr(10).
155
+            "a simple CR here".chr(13).
156
+            "a simple LF here".chr(10).
157
+            "and then LFCR".chr(10).chr(13).
158
+            "last but not least weird names: G".chr(252)."nter, El".chr(232)."ne, and an xml comment closing tag: -->";
159 159
         $m = new xmlrpcmsg('examples.stringecho', array(
160 160
             new xmlrpcval($sendString, 'string'),
161 161
         ));
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
     public function testLatin1String()
177 177
     {
178 178
         $sendString =
179
-            "last but not least weird names: G" . chr(252) . "nter, El" . chr(232) . "ne";
179
+            "last but not least weird names: G".chr(252)."nter, El".chr(232)."ne";
180 180
         $x = '<?xml version="1.0" encoding="ISO-8859-1"?><methodCall><methodName>examples.stringecho</methodName><params><param><value>'.
181 181
             $sendString.
182 182
             '</value></param></params></methodCall>';
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
     public function testUtf8Method()
281 281
     {
282 282
         PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding = 'UTF-8';
283
-        $m = new xmlrpcmsg("tests.utf8methodname." . 'κόσμε', array(
283
+        $m = new xmlrpcmsg("tests.utf8methodname.".'κόσμε', array(
284 284
             new xmlrpcval('hello')
285 285
         ));
286 286
         $v = $this->send($m);
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
         ));
303 303
         $v = $this->send($m);
304 304
         if ($v) {
305
-            $this->assertEquals($a + $b, $v->scalarval());
305
+            $this->assertEquals($a+$b, $v->scalarval());
306 306
         }
307 307
     }
308 308
 
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
         ));
315 315
         $v = $this->send($m);
316 316
         if ($v) {
317
-            $this->assertEquals(12 - 23, $v->scalarval());
317
+            $this->assertEquals(12-23, $v->scalarval());
318 318
         }
319 319
     }
320 320
 
@@ -348,7 +348,7 @@  discard block
 block discarded – undo
348 348
         if ($v) {
349 349
             $sz = $v->arraysize();
350 350
             $got = '';
351
-            for ($i = 0; $i < $sz; $i++) {
351
+            for ($i = 0; $i<$sz; $i++) {
352 352
                 $b = $v->arraymem($i);
353 353
                 if ($b->scalarval()) {
354 354
                     $got .= '1';
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
             $got = '';
412 412
             $expected = '37210';
413 413
             $expect_array = array('ctLeftAngleBrackets', 'ctRightAngleBrackets', 'ctAmpersands', 'ctApostrophes', 'ctQuotes');
414
-            foreach($expect_array as $val) {
414
+            foreach ($expect_array as $val) {
415 415
                 $b = $v->structmem($val);
416 416
                 $got .= $b->me['int'];
417 417
             }
@@ -618,9 +618,9 @@  discard block
 block discarded – undo
618 618
             new xmlrpcval('whatever', 'string'),
619 619
         ));
620 620
         $v = $this->send($m, $GLOBALS['xmlrpcerr']['server_error']);
621
-        $this->client->path = $this->args['URI'] . '?EXCEPTION_HANDLING=1';
621
+        $this->client->path = $this->args['URI'].'?EXCEPTION_HANDLING=1';
622 622
         $v = $this->send($m, 1); // the error code of the expected exception
623
-        $this->client->path = $this->args['URI'] . '?EXCEPTION_HANDLING=2';
623
+        $this->client->path = $this->args['URI'].'?EXCEPTION_HANDLING=2';
624 624
         // depending on whether display_errors is ON or OFF on the server, we will get back a different error here,
625 625
         // as php will generate an http status code of either 200 or 500...
626 626
         $v = $this->send($m, array($GLOBALS['xmlrpcerr']['invalid_return'], $GLOBALS['xmlrpcerr']['http_error']));
@@ -829,7 +829,7 @@  discard block
 block discarded – undo
829 829
     {
830 830
         // make a 'deep client copy' as the original one might have many properties set
831 831
         // also for speed only wrap one method of the whole server
832
-        $class = wrap_xmlrpc_server($this->client, array('simple_client_copy' => 0, 'method_filter' => '/examples\.getStateName/' ));
832
+        $class = wrap_xmlrpc_server($this->client, array('simple_client_copy' => 0, 'method_filter' => '/examples\.getStateName/'));
833 833
         if ($class == '') {
834 834
             $this->fail('Registration of remote server failed');
835 835
         } else {
@@ -864,9 +864,9 @@  discard block
 block discarded – undo
864 864
         $cookies = array(
865 865
             //'c1' => array(),
866 866
             'c2' => array('value' => 'c2'),
867
-            'c3' => array('value' => 'c3', 'expires' => time() + 60 * 60 * 24 * 30),
868
-            'c4' => array('value' => 'c4', 'expires' => time() + 60 * 60 * 24 * 30, 'path' => '/'),
869
-            'c5' => array('value' => 'c5', 'expires' => time() + 60 * 60 * 24 * 30, 'path' => '/', 'domain' => 'localhost'),
867
+            'c3' => array('value' => 'c3', 'expires' => time()+60 * 60 * 24 * 30),
868
+            'c4' => array('value' => 'c4', 'expires' => time()+60 * 60 * 24 * 30, 'path' => '/'),
869
+            'c5' => array('value' => 'c5', 'expires' => time()+60 * 60 * 24 * 30, 'path' => '/', 'domain' => 'localhost'),
870 870
         );
871 871
         $cookiesval = php_xmlrpc_encode($cookies);
872 872
         $m = new xmlrpcmsg('examples.setcookies', array($cookiesval));
@@ -914,10 +914,10 @@  discard block
 block discarded – undo
914 914
         $m = new xmlrpcmsg('examples.getcookies', array());
915 915
         foreach ($cookies as $cookie => $val) {
916 916
             $this->client->setCookie($cookie, $val);
917
-            $cookies[$cookie] = (string)$cookies[$cookie];
917
+            $cookies[$cookie] = (string) $cookies[$cookie];
918 918
         }
919 919
         $r = $this->client->send($m, $this->timeout, $this->method);
920
-        $this->assertEquals(0, $r->faultCode(), 'Error ' . $r->faultCode() . ' connecting to server: ' . $r->faultString());
920
+        $this->assertEquals(0, $r->faultCode(), 'Error '.$r->faultCode().' connecting to server: '.$r->faultString());
921 921
         if (!$r->faultCode()) {
922 922
             $v = $r->value();
923 923
             $v = php_xmlrpc_decode($v);
Please login to merge, or discard this patch.
demo/server/server.php 1 patch
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     die();
16 16
 }
17 17
 
18
-include_once __DIR__ . "/../../vendor/autoload.php";
18
+include_once __DIR__."/../../vendor/autoload.php";
19 19
 
20 20
 // out-of-band information: let the client manipulate the server operations.
21 21
 // we do this to help the testsuite script: do not reproduce in production!
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
         mkdir($GLOBALS['PHPUNIT_COVERAGE_DATA_DIRECTORY']);
26 26
     }
27 27
 
28
-    include_once __DIR__ . "/../../vendor/phpunit/phpunit-selenium/PHPUnit/Extensions/SeleniumCommon/prepend.php";
28
+    include_once __DIR__."/../../vendor/phpunit/phpunit-selenium/PHPUnit/Extensions/SeleniumCommon/prepend.php";
29 29
 }
30 30
 
31 31
 use PhpXmlRpc\Value;
@@ -122,11 +122,11 @@  discard block
 block discarded – undo
122 122
     // extract the value of the state number
123 123
     $snv = $sno->scalarval();
124 124
     // look it up in our array (zero-based)
125
-    if (isset($stateNames[$snv - 1])) {
126
-        $stateName = $stateNames[$snv - 1];
125
+    if (isset($stateNames[$snv-1])) {
126
+        $stateName = $stateNames[$snv-1];
127 127
     } else {
128 128
         // not there, so complain
129
-        $err = "I don't have a state for the index '" . $snv . "'";
129
+        $err = "I don't have a state for the index '".$snv."'";
130 130
     }
131 131
 
132 132
     // if we generated an error, create an error return response
@@ -152,11 +152,11 @@  discard block
 block discarded – undo
152 152
 {
153 153
     global $stateNames;
154 154
 
155
-    if (isset($stateNames[$stateNo - 1])) {
156
-        return $stateNames[$stateNo - 1];
155
+    if (isset($stateNames[$stateNo-1])) {
156
+        return $stateNames[$stateNo-1];
157 157
     } else {
158 158
         // not, there so complain
159
-        throw new Exception("I don't have a state for the index '" . $stateNo . "'", PhpXmlRpc\PhpXmlRpc::$xmlrpcerruser);
159
+        throw new Exception("I don't have a state for the index '".$stateNo."'", PhpXmlRpc\PhpXmlRpc::$xmlrpcerruser);
160 160
     }
161 161
 }
162 162
 
@@ -186,17 +186,17 @@  discard block
 block discarded – undo
186 186
 eval($findstate9_sig['source']);
187 187
 
188 188
 $findstate10_sig = array(
189
-    "function" => function ($req) { return findState($req); },
189
+    "function" => function($req) { return findState($req); },
190 190
     "signature" => $findstate_sig,
191 191
     "docstring" => $findstate_doc,
192 192
 );
193 193
 
194
-$findstate11_sig = $wrapper->wrapPhpFunction(function ($stateNo) { return inner_findstate($stateNo); });
194
+$findstate11_sig = $wrapper->wrapPhpFunction(function($stateNo) { return inner_findstate($stateNo); });
195 195
 
196 196
 $c = new xmlrpcServerMethodsContainer;
197 197
 $moreSignatures = $wrapper->wrapPhpClass($c, array('prefix' => 'tests.', 'method_type' => 'all'));
198 198
 
199
-$returnObj_sig =  $wrapper->wrapPhpFunction(array($c, 'returnObject'), '', array('encode_php_objs' => true));
199
+$returnObj_sig = $wrapper->wrapPhpFunction(array($c, 'returnObject'), '', array('encode_php_objs' => true));
200 200
 
201 201
 // used to test signatures with NULL params
202 202
 $findstate12_sig = array(
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
     $s = $req->getParam(0);
223 223
     $t = $req->getParam(1);
224 224
 
225
-    return new PhpXmlRpc\Response(new Value($s->scalarval() + $t->scalarval(), Value::$xmlrpcInt));
225
+    return new PhpXmlRpc\Response(new Value($s->scalarval()+$t->scalarval(), Value::$xmlrpcInt));
226 226
 }
227 227
 
228 228
 $addtwodouble_sig = array(array(Value::$xmlrpcDouble, Value::$xmlrpcDouble, Value::$xmlrpcDouble));
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
     $s = $req->getParam(0);
233 233
     $t = $req->getParam(1);
234 234
 
235
-    return new PhpXmlRpc\Response(new Value($s->scalarval() + $t->scalarval(), Value::$xmlrpcDouble));
235
+    return new PhpXmlRpc\Response(new Value($s->scalarval()+$t->scalarval(), Value::$xmlrpcDouble));
236 236
 }
237 237
 
238 238
 $stringecho_sig = array(array(Value::$xmlrpcString, Value::$xmlrpcString));
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
 function echoBack($req)
249 249
 {
250 250
     // just sends back a string with what i got sent to me, just escaped, that's all
251
-    $s = "I got the following message:\n" . $req->serialize();
251
+    $s = "I got the following message:\n".$req->serialize();
252 252
 
253 253
     return new PhpXmlRpc\Response(new Value($s));
254 254
 }
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
         return 0;
306 306
     }
307 307
 
308
-    return ($agesorter_arr[$a] > $agesorter_arr[$b]) ? -1 : 1;
308
+    return ($agesorter_arr[$a]>$agesorter_arr[$b]) ? -1 : 1;
309 309
 }
310 310
 
311 311
 $agesorter_sig = array(array(Value::$xmlrpcArray, Value::$xmlrpcArray));
@@ -351,7 +351,7 @@  discard block
 block discarded – undo
351 351
     // hack, must make global as uksort() won't
352 352
     // allow us to pass any other auxiliary information
353 353
     uksort($agesorter_arr, 'agesorter_compare');
354
-    foreach($agesorter_arr as $key => $val) {
354
+    foreach ($agesorter_arr as $key => $val) {
355 355
         // recreate each struct element
356 356
         $v[] = new Value(
357 357
             array(
@@ -406,17 +406,17 @@  discard block
 block discarded – undo
406 406
         $err = "Error, no 'From' field specified";
407 407
     }
408 408
 
409
-    $msgHdr = "From: " . $mFrom->scalarval() . "\n";
410
-    $msgHdr .= "To: " . $mTo->scalarval() . "\n";
409
+    $msgHdr = "From: ".$mFrom->scalarval()."\n";
410
+    $msgHdr .= "To: ".$mTo->scalarval()."\n";
411 411
 
412 412
     if ($mCc->scalarval() != "") {
413
-        $msgHdr .= "Cc: " . $mCc->scalarval() . "\n";
413
+        $msgHdr .= "Cc: ".$mCc->scalarval()."\n";
414 414
     }
415 415
     if ($mBcc->scalarval() != "") {
416
-        $msgHdr .= "Bcc: " . $mBcc->scalarval() . "\n";
416
+        $msgHdr .= "Bcc: ".$mBcc->scalarval()."\n";
417 417
     }
418 418
     if ($mMime->scalarval() != "") {
419
-        $msgHdr .= "Content-type: " . $mMime->scalarval() . "\n";
419
+        $msgHdr .= "Content-type: ".$mMime->scalarval()."\n";
420 420
     }
421 421
     $msgHdr .= "X-Mailer: XML-RPC for PHP mailer 1.0";
422 422
 
@@ -506,7 +506,7 @@  discard block
 block discarded – undo
506 506
     $moe = $sno["moe"];
507 507
     $larry = $sno["larry"];
508 508
     $curly = $sno["curly"];
509
-    $num = $moe->scalarval() + $larry->scalarval() + $curly->scalarval();
509
+    $num = $moe->scalarval()+$larry->scalarval()+$curly->scalarval();
510 510
 
511 511
     return new PhpXmlRpc\Response(new Value($num, Value::$xmlrpcInt));
512 512
 }
@@ -548,9 +548,9 @@  discard block
 block discarded – undo
548 548
     $ar = $req->getParam(0);
549 549
     $sz = $ar->count();
550 550
     $first = $ar[0];
551
-    $last = $ar[$sz - 1];
551
+    $last = $ar[$sz-1];
552 552
 
553
-    return new PhpXmlRpc\Response(new Value($first->scalarval() .
553
+    return new PhpXmlRpc\Response(new Value($first->scalarval().
554 554
         $last->scalarval(), Value::$xmlrpcString));
555 555
 }
556 556
 
@@ -584,7 +584,7 @@  discard block
 block discarded – undo
584 584
     $larry = $fools["larry"];
585 585
     $moe = $fools["moe"];
586 586
 
587
-    return new PhpXmlRpc\Response(new Value($curly->scalarval() + $larry->scalarval() + $moe->scalarval(), Value::$xmlrpcInt));
587
+    return new PhpXmlRpc\Response(new Value($curly->scalarval()+$larry->scalarval()+$moe->scalarval(), Value::$xmlrpcInt));
588 588
 }
589 589
 
590 590
 $v1_countTheEntities_sig = array(array(Value::$xmlrpcStruct, Value::$xmlrpcString));
@@ -598,7 +598,7 @@  discard block
 block discarded – undo
598 598
     $ap = 0;
599 599
     $qu = 0;
600 600
     $amp = 0;
601
-    for ($i = 0; $i < strlen($str); $i++) {
601
+    for ($i = 0; $i<strlen($str); $i++) {
602 602
         $c = substr($str, $i, 1);
603 603
         switch ($c) {
604 604
             case ">":
@@ -800,7 +800,7 @@  discard block
 block discarded – undo
800 800
     ),
801 801
     // Greek word 'kosme'. NB: NOT a valid ISO8859 string!
802 802
     // NB: we can only register this when setting internal encoding to UTF-8, or it will break system.listMethods
803
-    "tests.utf8methodname." . 'κόσμε' => array(
803
+    "tests.utf8methodname.".'κόσμε' => array(
804 804
         "function" => "stringEcho",
805 805
         "signature" => $stringecho_sig,
806 806
         "docstring" => $stringecho_doc,
@@ -977,5 +977,5 @@  discard block
 block discarded – undo
977 977
 // out-of-band information: let the client manipulate the server operations.
978 978
 // we do this to help the testsuite script: do not reproduce in production!
979 979
 if (isset($_COOKIE['PHPUNIT_SELENIUM_TEST_ID']) && extension_loaded('xdebug')) {
980
-    include_once __DIR__ . "/../../vendor/phpunit/phpunit-selenium/PHPUnit/Extensions/SeleniumCommon/append.php";
980
+    include_once __DIR__."/../../vendor/phpunit/phpunit-selenium/PHPUnit/Extensions/SeleniumCommon/append.php";
981 981
 }
Please login to merge, or discard this patch.
lib/xmlrpc.inc 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
         $val = reset($ar);
96 96
         $typ = key($ar);
97 97
 
98
-        return '<value>' . $this->serializedata($typ, $val) . "</value>\n";
98
+        return '<value>'.$this->serializedata($typ, $val)."</value>\n";
99 99
         //}
100 100
     }
101 101
 
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
         // preserve back compatibility
115 115
 
116 116
         if (is_array($b)) {
117
-            foreach($b as $id => $cont) {
117
+            foreach ($b as $id => $cont) {
118 118
                 $b[$id] = $cont->scalarval();
119 119
             }
120 120
         }
@@ -122,10 +122,10 @@  discard block
 block discarded – undo
122 122
         // add support for structures directly encoding php objects
123 123
         if (is_object($b)) {
124 124
             $t = get_object_vars($b);
125
-            foreach($t as $id => $cont) {
125
+            foreach ($t as $id => $cont) {
126 126
                 $t[$id] = $cont->scalarval();
127 127
             }
128
-            foreach($t as $id => $cont) {
128
+            foreach ($t as $id => $cont) {
129 129
                 @$b->$id = $cont;
130 130
             }
131 131
         }
@@ -160,17 +160,17 @@  discard block
 block discarded – undo
160 160
 /* Expose as global functions the ones which are now class methods */
161 161
 
162 162
 /// Wrong speling, but we are adamant on backwards compatibility!
163
-function xmlrpc_encode_entitites($data, $srcEncoding='', $destEncoding='')
163
+function xmlrpc_encode_entitites($data, $srcEncoding = '', $destEncoding = '')
164 164
 {
165 165
     return PhpXmlRpc\Helper\Charset::instance()->encodeEntitites($data, $srcEncoding, $destEncoding);
166 166
 }
167 167
 
168
-function iso8601_encode($timeT, $utc=0)
168
+function iso8601_encode($timeT, $utc = 0)
169 169
 {
170 170
     return PhpXmlRpc\Helper\Date::iso8601Encode($timeT, $utc);
171 171
 }
172 172
 
173
-function iso8601_decode($iDate, $utc=0)
173
+function iso8601_decode($iDate, $utc = 0)
174 174
 {
175 175
     return PhpXmlRpc\Helper\Date::iso8601Decode($iDate, $utc);
176 176
 }
@@ -180,25 +180,25 @@  discard block
 block discarded – undo
180 180
     return PhpXmlRpc\Helper\Http::decodeChunked($buffer);
181 181
 }
182 182
 
183
-function php_xmlrpc_decode($xmlrpcVal, $options=array())
183
+function php_xmlrpc_decode($xmlrpcVal, $options = array())
184 184
 {
185 185
     $encoder = new PhpXmlRpc\Encoder();
186 186
     return $encoder->decode($xmlrpcVal, $options);
187 187
 }
188 188
 
189
-function php_xmlrpc_encode($phpVal, $options=array())
189
+function php_xmlrpc_encode($phpVal, $options = array())
190 190
 {
191 191
     $encoder = new PhpXmlRpc\Encoder();
192 192
     return $encoder->encode($phpVal, $options);
193 193
 }
194 194
 
195
-function php_xmlrpc_decode_xml($xmlVal, $options=array())
195
+function php_xmlrpc_decode_xml($xmlVal, $options = array())
196 196
 {
197 197
     $encoder = new PhpXmlRpc\Encoder();
198 198
     return $encoder->decodeXml($xmlVal, $options);
199 199
 }
200 200
 
201
-function guess_encoding($httpHeader='', $xmlChunk='', $encodingPrefs=null)
201
+function guess_encoding($httpHeader = '', $xmlChunk = '', $encodingPrefs = null)
202 202
 {
203 203
     return PhpXmlRpc\Helper\XMLParser::guessEncoding($httpHeader, $xmlChunk, $encodingPrefs);
204 204
 }
Please login to merge, or discard this patch.
src/Client.php 1 patch
Spacing   +62 added lines, -62 removed lines patch added patch discarded remove patch
@@ -130,10 +130,10 @@  discard block
 block discarded – undo
130 130
             $server = $parts['host'];
131 131
             $path = isset($parts['path']) ? $parts['path'] : '';
132 132
             if (isset($parts['query'])) {
133
-                $path .= '?' . $parts['query'];
133
+                $path .= '?'.$parts['query'];
134 134
             }
135 135
             if (isset($parts['fragment'])) {
136
-                $path .= '#' . $parts['fragment'];
136
+                $path .= '#'.$parts['fragment'];
137 137
             }
138 138
             if (isset($parts['port'])) {
139 139
                 $port = $parts['port'];
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
             }
150 150
         }
151 151
         if ($path == '' || $path[0] != '/') {
152
-            $this->path = '/' . $path;
152
+            $this->path = '/'.$path;
153 153
         } else {
154 154
             $this->path = $path;
155 155
         }
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
         }*/
188 188
 
189 189
         // initialize user_agent string
190
-        $this->user_agent = PhpXmlRpc::$xmlrpcName . '/' . PhpXmlRpc::$xmlrpcVersion;
190
+        $this->user_agent = PhpXmlRpc::$xmlrpcName.'/'.PhpXmlRpc::$xmlrpcVersion;
191 191
     }
192 192
 
193 193
     /**
@@ -556,10 +556,10 @@  discard block
 block discarded – undo
556 556
      */
557 557
     protected function sendPayloadHTTP10($req, $server, $port, $timeout = 0, $username = '', $password = '',
558 558
         $authType = 1, $proxyHost = '', $proxyPort = 0, $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1,
559
-        $method='http')
559
+        $method = 'http')
560 560
     {
561 561
         if ($port == 0) {
562
-            $port = ( $method === "https" ) ? 443 : 80;
562
+            $port = ($method === "https") ? 443 : 80;
563 563
         }
564 564
 
565 565
         // Only create the payload if it was not created previously
@@ -590,15 +590,15 @@  discard block
 block discarded – undo
590 590
         // thanks to Grant Rauscher <[email protected]> for this
591 591
         $credentials = '';
592 592
         if ($username != '') {
593
-            $credentials = 'Authorization: Basic ' . base64_encode($username . ':' . $password) . "\r\n";
593
+            $credentials = 'Authorization: Basic '.base64_encode($username.':'.$password)."\r\n";
594 594
             if ($authType != 1) {
595
-                error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth is supported with HTTP 1.0');
595
+                error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth is supported with HTTP 1.0');
596 596
             }
597 597
         }
598 598
 
599 599
         $acceptedEncoding = '';
600 600
         if (is_array($this->accepted_compression) && count($this->accepted_compression)) {
601
-            $acceptedEncoding = 'Accept-Encoding: ' . implode(', ', $this->accepted_compression) . "\r\n";
601
+            $acceptedEncoding = 'Accept-Encoding: '.implode(', ', $this->accepted_compression)."\r\n";
602 602
         }
603 603
 
604 604
         $proxyCredentials = '';
@@ -609,18 +609,18 @@  discard block
 block discarded – undo
609 609
             $connectServer = $proxyHost;
610 610
             $connectPort = $proxyPort;
611 611
             $transport = "tcp";
612
-            $uri = 'http://' . $server . ':' . $port . $this->path;
612
+            $uri = 'http://'.$server.':'.$port.$this->path;
613 613
             if ($proxyUsername != '') {
614 614
                 if ($proxyAuthType != 1) {
615
-                    error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth to proxy is supported with HTTP 1.0');
615
+                    error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth to proxy is supported with HTTP 1.0');
616 616
                 }
617
-                $proxyCredentials = 'Proxy-Authorization: Basic ' . base64_encode($proxyUsername . ':' . $proxyPassword) . "\r\n";
617
+                $proxyCredentials = 'Proxy-Authorization: Basic '.base64_encode($proxyUsername.':'.$proxyPassword)."\r\n";
618 618
             }
619 619
         } else {
620 620
             $connectServer = $server;
621 621
             $connectPort = $port;
622 622
             /// @todo if supporting https, we should support all its current options as well: peer name verification etc...
623
-            $transport = ( $method === "https" ) ? "tls" : "tcp";
623
+            $transport = ($method === "https") ? "tls" : "tcp";
624 624
             $uri = $this->path;
625 625
         }
626 626
 
@@ -631,56 +631,56 @@  discard block
 block discarded – undo
631 631
             $version = '';
632 632
             foreach ($this->cookies as $name => $cookie) {
633 633
                 if ($cookie['version']) {
634
-                    $version = ' $Version="' . $cookie['version'] . '";';
635
-                    $cookieHeader .= ' ' . $name . '="' . $cookie['value'] . '";';
634
+                    $version = ' $Version="'.$cookie['version'].'";';
635
+                    $cookieHeader .= ' '.$name.'="'.$cookie['value'].'";';
636 636
                     if ($cookie['path']) {
637
-                        $cookieHeader .= ' $Path="' . $cookie['path'] . '";';
637
+                        $cookieHeader .= ' $Path="'.$cookie['path'].'";';
638 638
                     }
639 639
                     if ($cookie['domain']) {
640
-                        $cookieHeader .= ' $Domain="' . $cookie['domain'] . '";';
640
+                        $cookieHeader .= ' $Domain="'.$cookie['domain'].'";';
641 641
                     }
642 642
                     if ($cookie['port']) {
643
-                        $cookieHeader .= ' $Port="' . $cookie['port'] . '";';
643
+                        $cookieHeader .= ' $Port="'.$cookie['port'].'";';
644 644
                     }
645 645
                 } else {
646
-                    $cookieHeader .= ' ' . $name . '=' . $cookie['value'] . ";";
646
+                    $cookieHeader .= ' '.$name.'='.$cookie['value'].";";
647 647
                 }
648 648
             }
649
-            $cookieHeader = 'Cookie:' . $version . substr($cookieHeader, 0, -1) . "\r\n";
649
+            $cookieHeader = 'Cookie:'.$version.substr($cookieHeader, 0, -1)."\r\n";
650 650
         }
651 651
 
652 652
         // omit port if 80
653
-        $port = ($port == 80) ? '' : (':' . $port);
654
-
655
-        $op = 'POST ' . $uri . " HTTP/1.0\r\n" .
656
-            'User-Agent: ' . $this->user_agent . "\r\n" .
657
-            'Host: ' . $server . $port . "\r\n" .
658
-            $credentials .
659
-            $proxyCredentials .
660
-            $acceptedEncoding .
661
-            $encodingHdr .
662
-            'Accept-Charset: ' . implode(',', $this->accepted_charset_encodings) . "\r\n" .
663
-            $cookieHeader .
664
-            'Content-Type: ' . $req->content_type . "\r\nContent-Length: " .
665
-            strlen($payload) . "\r\n\r\n" .
653
+        $port = ($port == 80) ? '' : (':'.$port);
654
+
655
+        $op = 'POST '.$uri." HTTP/1.0\r\n".
656
+            'User-Agent: '.$this->user_agent."\r\n".
657
+            'Host: '.$server.$port."\r\n".
658
+            $credentials.
659
+            $proxyCredentials.
660
+            $acceptedEncoding.
661
+            $encodingHdr.
662
+            'Accept-Charset: '.implode(',', $this->accepted_charset_encodings)."\r\n".
663
+            $cookieHeader.
664
+            'Content-Type: '.$req->content_type."\r\nContent-Length: ".
665
+            strlen($payload)."\r\n\r\n".
666 666
             $payload;
667 667
 
668
-        if ($this->debug > 1) {
668
+        if ($this->debug>1) {
669 669
             Logger::instance()->debugMessage("---SENDING---\n$op\n---END---");
670 670
         }
671 671
 
672
-        if ($timeout > 0) {
672
+        if ($timeout>0) {
673 673
             $fp = @stream_socket_client("$transport://$connectServer:$connectPort", $this->errno, $this->errstr, $timeout);
674 674
         } else {
675 675
             $fp = @stream_socket_client("$transport://$connectServer:$connectPort", $this->errno, $this->errstr);
676 676
         }
677 677
         if ($fp) {
678
-            if ($timeout > 0) {
678
+            if ($timeout>0) {
679 679
                 stream_set_timeout($fp, $timeout);
680 680
             }
681 681
         } else {
682
-            $this->errstr = 'Connect error: ' . $this->errstr;
683
-            $r = new Response(0, PhpXmlRpc::$xmlrpcerr['http_error'], $this->errstr . ' (' . $this->errno . ')');
682
+            $this->errstr = 'Connect error: '.$this->errstr;
683
+            $r = new Response(0, PhpXmlRpc::$xmlrpcerr['http_error'], $this->errstr.' ('.$this->errno.')');
684 684
 
685 685
             return $r;
686 686
         }
@@ -732,7 +732,7 @@  discard block
 block discarded – undo
732 732
      * @param int $sslVersion
733 733
      * @return Response
734 734
      */
735
-    protected function sendPayloadHTTPS($req, $server, $port, $timeout = 0, $username = '',  $password = '',
735
+    protected function sendPayloadHTTPS($req, $server, $port, $timeout = 0, $username = '', $password = '',
736 736
         $authType = 1, $cert = '', $certPass = '', $caCert = '', $caCertDir = '', $proxyHost = '', $proxyPort = 0,
737 737
         $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $keepAlive = false, $key = '', $keyPass = '',
738 738
         $sslVersion = 0)
@@ -821,12 +821,12 @@  discard block
 block discarded – undo
821 821
             $encodingHdr = '';
822 822
         }
823 823
 
824
-        if ($this->debug > 1) {
824
+        if ($this->debug>1) {
825 825
             Logger::instance()->debugMessage("---SENDING---\n$payload\n---END---");
826 826
         }
827 827
 
828 828
         if (!$keepAlive || !$this->xmlrpc_curl_handle) {
829
-            $curl = curl_init($method . '://' . $server . ':' . $port . $this->path);
829
+            $curl = curl_init($method.'://'.$server.':'.$port.$this->path);
830 830
             if ($keepAlive) {
831 831
                 $this->xmlrpc_curl_handle = $curl;
832 832
             }
@@ -837,7 +837,7 @@  discard block
 block discarded – undo
837 837
         // results into variable
838 838
         curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
839 839
 
840
-        if ($this->debug > 1) {
840
+        if ($this->debug>1) {
841 841
             curl_setopt($curl, CURLOPT_VERBOSE, true);
842 842
             /// @todo allow callers to redirect curlopt_stderr to some stream which can be buffered
843 843
         }
@@ -863,7 +863,7 @@  discard block
 block discarded – undo
863 863
             }
864 864
         }
865 865
         // extra headers
866
-        $headers = array('Content-Type: ' . $req->content_type, 'Accept-Charset: ' . implode(',', $this->accepted_charset_encodings));
866
+        $headers = array('Content-Type: '.$req->content_type, 'Accept-Charset: '.implode(',', $this->accepted_charset_encodings));
867 867
         // if no keepalive is wanted, let the server know it in advance
868 868
         if (!$keepAlive) {
869 869
             $headers[] = 'Connection: close';
@@ -880,15 +880,15 @@  discard block
 block discarded – undo
880 880
         curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
881 881
         // timeout is borked
882 882
         if ($timeout) {
883
-            curl_setopt($curl, CURLOPT_TIMEOUT, $timeout == 1 ? 1 : $timeout - 1);
883
+            curl_setopt($curl, CURLOPT_TIMEOUT, $timeout == 1 ? 1 : $timeout-1);
884 884
         }
885 885
 
886 886
         if ($username && $password) {
887
-            curl_setopt($curl, CURLOPT_USERPWD, $username . ':' . $password);
887
+            curl_setopt($curl, CURLOPT_USERPWD, $username.':'.$password);
888 888
             if (defined('CURLOPT_HTTPAUTH')) {
889 889
                 curl_setopt($curl, CURLOPT_HTTPAUTH, $authType);
890 890
             } elseif ($authType != 1) {
891
-                error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth is supported by the current PHP/curl install');
891
+                error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth is supported by the current PHP/curl install');
892 892
             }
893 893
         }
894 894
 
@@ -929,13 +929,13 @@  discard block
 block discarded – undo
929 929
             if ($proxyPort == 0) {
930 930
                 $proxyPort = 8080; // NB: even for HTTPS, local connection is on port 8080
931 931
             }
932
-            curl_setopt($curl, CURLOPT_PROXY, $proxyHost . ':' . $proxyPort);
932
+            curl_setopt($curl, CURLOPT_PROXY, $proxyHost.':'.$proxyPort);
933 933
             if ($proxyUsername) {
934
-                curl_setopt($curl, CURLOPT_PROXYUSERPWD, $proxyUsername . ':' . $proxyPassword);
934
+                curl_setopt($curl, CURLOPT_PROXYUSERPWD, $proxyUsername.':'.$proxyPassword);
935 935
                 if (defined('CURLOPT_PROXYAUTH')) {
936 936
                     curl_setopt($curl, CURLOPT_PROXYAUTH, $proxyAuthType);
937 937
                 } elseif ($proxyAuthType != 1) {
938
-                    error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth to proxy is supported by the current PHP/curl install');
938
+                    error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth to proxy is supported by the current PHP/curl install');
939 939
                 }
940 940
             }
941 941
         }
@@ -946,7 +946,7 @@  discard block
 block discarded – undo
946 946
         if (count($this->cookies)) {
947 947
             $cookieHeader = '';
948 948
             foreach ($this->cookies as $name => $cookie) {
949
-                $cookieHeader .= $name . '=' . $cookie['value'] . '; ';
949
+                $cookieHeader .= $name.'='.$cookie['value'].'; ';
950 950
             }
951 951
             curl_setopt($curl, CURLOPT_COOKIE, substr($cookieHeader, 0, -2));
952 952
         }
@@ -957,13 +957,13 @@  discard block
 block discarded – undo
957 957
 
958 958
         $result = curl_exec($curl);
959 959
 
960
-        if ($this->debug > 1) {
960
+        if ($this->debug>1) {
961 961
             $message = "---CURL INFO---\n";
962 962
             foreach (curl_getinfo($curl) as $name => $val) {
963 963
                 if (is_array($val)) {
964 964
                     $val = implode("\n", $val);
965 965
                 }
966
-                $message .= $name . ': ' . $val . "\n";
966
+                $message .= $name.': '.$val."\n";
967 967
             }
968 968
             $message .= "---END---";
969 969
             Logger::instance()->debugMessage($message);
@@ -973,7 +973,7 @@  discard block
 block discarded – undo
973 973
             /// @todo we should use a better check here - what if we get back '' or '0'?
974 974
 
975 975
             $this->errstr = 'no response';
976
-            $resp = new Response(0, PhpXmlRpc::$xmlrpcerr['curl_fail'], PhpXmlRpc::$xmlrpcstr['curl_fail'] . ': ' . curl_error($curl));
976
+            $resp = new Response(0, PhpXmlRpc::$xmlrpcerr['curl_fail'], PhpXmlRpc::$xmlrpcstr['curl_fail'].': '.curl_error($curl));
977 977
             curl_close($curl);
978 978
             if ($keepAlive) {
979 979
                 $this->xmlrpc_curl_handle = null;
@@ -1083,7 +1083,7 @@  discard block
 block discarded – undo
1083 1083
             $call['methodName'] = new Value($req->method(), 'string');
1084 1084
             $numParams = $req->getNumParams();
1085 1085
             $params = array();
1086
-            for ($i = 0; $i < $numParams; $i++) {
1086
+            for ($i = 0; $i<$numParams; $i++) {
1087 1087
                 $params[$i] = $req->getParam($i);
1088 1088
             }
1089 1089
             $call['params'] = new Value($params, 'array');
@@ -1109,15 +1109,15 @@  discard block
 block discarded – undo
1109 1109
             /// @todo test this code branch...
1110 1110
             $rets = $result->value();
1111 1111
             if (!is_array($rets)) {
1112
-                return false;       // bad return type from system.multicall
1112
+                return false; // bad return type from system.multicall
1113 1113
             }
1114 1114
             $numRets = count($rets);
1115 1115
             if ($numRets != count($reqs)) {
1116
-                return false;       // wrong number of return values.
1116
+                return false; // wrong number of return values.
1117 1117
             }
1118 1118
 
1119 1119
             $response = array();
1120
-            for ($i = 0; $i < $numRets; $i++) {
1120
+            for ($i = 0; $i<$numRets; $i++) {
1121 1121
                 $val = $rets[$i];
1122 1122
                 if (!is_array($val)) {
1123 1123
                     return false;
@@ -1125,7 +1125,7 @@  discard block
 block discarded – undo
1125 1125
                 switch (count($val)) {
1126 1126
                     case 1:
1127 1127
                         if (!isset($val[0])) {
1128
-                            return false;       // Bad value
1128
+                            return false; // Bad value
1129 1129
                         }
1130 1130
                         // Normal return value
1131 1131
                         $response[$i] = new Response($val[0], 0, '', 'phpvals');
@@ -1153,19 +1153,19 @@  discard block
 block discarded – undo
1153 1153
 
1154 1154
             $rets = $result->value();
1155 1155
             if ($rets->kindOf() != 'array') {
1156
-                return false;       // bad return type from system.multicall
1156
+                return false; // bad return type from system.multicall
1157 1157
             }
1158 1158
             $numRets = $rets->count();
1159 1159
             if ($numRets != count($reqs)) {
1160
-                return false;       // wrong number of return values.
1160
+                return false; // wrong number of return values.
1161 1161
             }
1162 1162
 
1163 1163
             $response = array();
1164
-            foreach($rets as $val) {
1164
+            foreach ($rets as $val) {
1165 1165
                 switch ($val->kindOf()) {
1166 1166
                     case 'array':
1167 1167
                         if ($val->count() != 1) {
1168
-                            return false;       // Bad value
1168
+                            return false; // Bad value
1169 1169
                         }
1170 1170
                         // Normal return value
1171 1171
                         $response[] = new Response($val[0]);
Please login to merge, or discard this patch.