Passed
Push — master ( 8b6717...c8a221 )
by Gaetano
08:12
created
demo/client/getstatename.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-require_once __DIR__ . "/_prepend.php";
2
+require_once __DIR__."/_prepend.php";
3 3
 
4 4
 output('<html lang="en">
5 5
 <head><title>phpxmlrpc - Getstatename demo</title></head>
@@ -17,13 +17,13 @@  discard block
 block discarded – undo
17 17
 $stateNo = "";
18 18
 
19 19
 if (isset($_POST['stateno']) && $_POST['stateno'] != "") {
20
-    $stateNo = (int)$_POST['stateno'];
20
+    $stateNo = (int) $_POST['stateno'];
21 21
     $method = 'examples.getStateName';
22 22
     $arguments = array(
23 23
         new Value($stateNo, Value::$xmlrpcInt),
24 24
     );
25 25
     $req = new Request($method, $arguments);
26
-    output("Sending the following request:<pre>\n\n" . htmlentities($req->serialize()) .
26
+    output("Sending the following request:<pre>\n\n".htmlentities($req->serialize()).
27 27
         "\n\n</pre>Debug info of server data follows...\n\n");
28 28
     $client = new Client(XMLRPCSERVER);
29 29
     $client->setOption(Client::OPT_DEBUG, 1);
@@ -32,12 +32,12 @@  discard block
 block discarded – undo
32 32
         $val = $resp->value();
33 33
         // NB: we are _assuming_ that the server did return a scalar xml-rpc value here.
34 34
         // If the server is not trusted, we might check that via `$val->kindOf() == 'scalar'`
35
-        output('<br/>State number <b>' . $stateNo . '</b> is <b>'
36
-            . htmlspecialchars($val->scalarVal()) . '</b><br/><br/>');
35
+        output('<br/>State number <b>'.$stateNo.'</b> is <b>'
36
+            . htmlspecialchars($val->scalarVal()).'</b><br/><br/>');
37 37
     } else {
38 38
         output('An error occurred: ');
39
-        output('<pre>Code: ' . htmlspecialchars($resp->faultCode())
40
-            . " Reason: '" . htmlspecialchars($resp->faultString()) . "'</pre>");
39
+        output('<pre>Code: '.htmlspecialchars($resp->faultCode())
40
+            . " Reason: '".htmlspecialchars($resp->faultString())."'</pre>");
41 41
     }
42 42
 }
43 43
 
Please login to merge, or discard this patch.
demo/server/proxy.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
  * @license code licensed under the BSD License: see file license.txt
17 17
  */
18 18
 
19
-require_once __DIR__ . "/_prepend.php";
19
+require_once __DIR__."/_prepend.php";
20 20
 
21 21
 // *** NB: WE BLOCK THIS FROM RUNNING BY DEFAULT IN CASE ACCESS IS GRANTED TO IT IN PRODUCTION BY MISTAKE ***
22 22
 // Comment out the following safeguard if you want to use it as is, but remember: this is an open relay !!!
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     //            fe. any url using the 'file://' protocol might be considered a hacking attempt
48 48
     $client = new Client($url);
49 49
 
50
-    if ($req->getNumParams() > 3) {
50
+    if ($req->getNumParams()>3) {
51 51
         // We have to set some options onto the client.
52 52
         // Note that if we do not untaint the received values, warnings might be generated...
53 53
         $options = $encoder->decode($req->getParam(3));
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
                     $client->setOption(Client::OPT_VERIFY_PEER, $val);
88 88
                     break;
89 89
                 case 'Timeout':
90
-                    $timeout = (int)$val;
90
+                    $timeout = (int) $val;
91 91
                     break;
92 92
             } // switch
93 93
         }
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
     ///         X-forwarded-for anyway, unless they consider this server as trusted...)
101 101
     $reqMethod = $req->getParam(1)->scalarVal();
102 102
     $req = new Request($reqMethod);
103
-    if ($req->getNumParams() > 1) {
103
+    if ($req->getNumParams()>1) {
104 104
         $pars = $req->getParam(2);
105 105
         foreach ($pars as $par) {
106 106
             $req->addParam($par);
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     }
109 109
 
110 110
     // add debug info into response we give back to caller
111
-    Server::xmlrpc_debugmsg("Sending to server $url the payload: " . $req->serialize());
111
+    Server::xmlrpc_debugmsg("Sending to server $url the payload: ".$req->serialize());
112 112
 
113 113
     return $client->send($req, $timeout);
114 114
 }
Please login to merge, or discard this patch.
src/Helper/XMLParser.php 2 patches
Spacing   +56 added lines, -56 removed lines patch added patch discarded remove patch
@@ -187,12 +187,12 @@  discard block
 block discarded – undo
187 187
             // q: can php be built without ctype? should we use a regexp?
188 188
             if (is_string($key) && !ctype_digit($key)) {
189 189
                 /// @todo on invalid options, throw/error-out instead of logging an error message?
190
-                switch($key) {
190
+                switch ($key) {
191 191
                     case 'target_charset':
192 192
                         if (function_exists('mb_convert_encoding')) {
193 193
                             $this->current_parsing_options['target_charset'] = $val;
194 194
                         } else {
195
-                            $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ": 'target_charset' option is unsupported without mbstring");
195
+                            $this->getLogger()->error('XML-RPC: '.__METHOD__.": 'target_charset' option is unsupported without mbstring");
196 196
                         }
197 197
                         break;
198 198
 
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
                         if (is_callable($val)) {
201 201
                             $this->current_parsing_options['methodname_callback'] = $val;
202 202
                         } else {
203
-                            $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ": Callback passed as 'methodname_callback' is not callable");
203
+                            $this->getLogger()->error('XML-RPC: '.__METHOD__.": Callback passed as 'methodname_callback' is not callable");
204 204
                         }
205 205
                         break;
206 206
 
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
                         break;
212 212
 
213 213
                     default:
214
-                        $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ": unsupported option: $key");
214
+                        $this->getLogger()->error('XML-RPC: '.__METHOD__.": unsupported option: $key");
215 215
                 }
216 216
                 unset($mergedOptions[$key]);
217 217
             }
@@ -255,10 +255,10 @@  discard block
 block discarded – undo
255 255
 
256 256
         try {
257 257
             // @see ticket #70 - we have to parse big xml docs in chunks to avoid errors
258
-            for ($offset = 0; $offset < $len; $offset += $this->maxChunkLength) {
258
+            for ($offset = 0; $offset<$len; $offset += $this->maxChunkLength) {
259 259
                 $chunk = substr($data, $offset, $this->maxChunkLength);
260 260
                 // error handling: xml not well formed
261
-                if (!@xml_parse($parser, $chunk, $offset + $this->maxChunkLength >= $len)) {
261
+                if (!@xml_parse($parser, $chunk, $offset+$this->maxChunkLength>=$len)) {
262 262
                     $errCode = xml_get_error_code($parser);
263 263
                     $errStr = sprintf('XML error %s: %s at line %d, column %d', $errCode, xml_error_string($errCode),
264 264
                         xml_get_current_line_number($parser), xml_get_current_column_number($parser));
@@ -266,25 +266,25 @@  discard block
 block discarded – undo
266 266
                     $this->_xh['isf_reason'] = $errStr;
267 267
                 }
268 268
                 // no need to parse further if we already have a fatal error
269
-                if ($this->_xh['isf'] >= 2) {
269
+                if ($this->_xh['isf']>=2) {
270 270
                     break;
271 271
                 }
272 272
             }
273 273
         /// @todo bump minimum php version to 5.5 and use a finally clause instead of doing cleanup 3 times
274 274
         } catch (\Exception $e) {
275
-            if (PHP_MAJOR_VERSION < 8) xml_parser_free($parser);
275
+            if (PHP_MAJOR_VERSION<8) xml_parser_free($parser);
276 276
             $this->current_parsing_options = array();
277 277
             /// @todo should we set $this->_xh['isf'] and $this->_xh['isf_reason'] ?
278 278
             throw $e;
279 279
         } catch (\Error $e) {
280
-            if (PHP_MAJOR_VERSION < 8) xml_parser_free($parser);
280
+            if (PHP_MAJOR_VERSION<8) xml_parser_free($parser);
281 281
             $this->current_parsing_options = array();
282 282
             //$this->accept = $prevAccept;
283 283
             /// @todo should we set $this->_xh['isf'] and $this->_xh['isf_reason'] ?
284 284
             throw $e;
285 285
         }
286 286
 
287
-        if (PHP_MAJOR_VERSION < 8) xml_parser_free($parser);
287
+        if (PHP_MAJOR_VERSION<8) xml_parser_free($parser);
288 288
         $this->current_parsing_options = array();
289 289
 
290 290
         // BC
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
     public function xmlrpc_se($parser, $name, $attrs, $acceptSingleVals = false)
312 312
     {
313 313
         // if invalid xml-rpc already detected, skip all processing
314
-        if ($this->_xh['isf'] >= 2) {
314
+        if ($this->_xh['isf']>=2) {
315 315
             return;
316 316
         }
317 317
 
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
             if ($acceptSingleVals === false) {
326 326
                 $accept = $this->current_parsing_options['accept'];
327 327
             } else {
328
-                $this->logDeprecation('Using argument $acceptSingleVals for method ' . __METHOD__ . ' is deprecated');
328
+                $this->logDeprecation('Using argument $acceptSingleVals for method '.__METHOD__.' is deprecated');
329 329
                 $accept = self::ACCEPT_REQUEST | self::ACCEPT_RESPONSE | self::ACCEPT_VALUE;
330 330
             }
331 331
             if (($name == 'METHODCALL' && ($accept & self::ACCEPT_REQUEST)) ||
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
                 $this->_xh['rt'] = strtolower($name);
336 336
             } else {
337 337
                 $this->_xh['isf'] = 2;
338
-                $this->_xh['isf_reason'] = 'missing top level xmlrpc element. Found: ' . $name;
338
+                $this->_xh['isf_reason'] = 'missing top level xmlrpc element. Found: '.$name;
339 339
 
340 340
                 return;
341 341
             }
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
 
441 441
             case 'MEMBER':
442 442
                 // set member name to null, in case we do not find in the xml later on
443
-                $this->_xh['valuestack'][count($this->_xh['valuestack']) - 1]['name'] = null;
443
+                $this->_xh['valuestack'][count($this->_xh['valuestack'])-1]['name'] = null;
444 444
                 //$this->_xh['ac']='';
445 445
                 // Drop trough intentionally
446 446
 
@@ -503,7 +503,7 @@  discard block
 block discarded – undo
503 503
      */
504 504
     public function xmlrpc_ee($parser, $name, $rebuildXmlrpcvals = 1)
505 505
     {
506
-        if ($this->_xh['isf'] >= 2) {
506
+        if ($this->_xh['isf']>=2) {
507 507
             return;
508 508
         }
509 509
 
@@ -525,7 +525,7 @@  discard block
 block discarded – undo
525 525
                     $this->_xh['value'] = mb_convert_encoding($this->_xh['value'], $this->current_parsing_options['target_charset'], 'UTF-8');
526 526
                 }
527 527
 
528
-                if ($rebuildXmlrpcvals > 0) {
528
+                if ($rebuildXmlrpcvals>0) {
529 529
                     // build the xml-rpc val out of the data received, and substitute it
530 530
                     $temp = new Value($this->_xh['value'], $this->_xh['vt']);
531 531
                     // in case we got info about underlying php class, save it in the object we're rebuilding
@@ -533,15 +533,15 @@  discard block
 block discarded – undo
533 533
                         $temp->_php_class = $this->_xh['php_class'];
534 534
                     }
535 535
                     $this->_xh['value'] = $temp;
536
-                } elseif ($rebuildXmlrpcvals < 0) {
536
+                } elseif ($rebuildXmlrpcvals<0) {
537 537
                     if ($this->_xh['vt'] == Value::$xmlrpcDateTime) {
538
-                        $this->_xh['value'] = (object)array(
538
+                        $this->_xh['value'] = (object) array(
539 539
                             'xmlrpc_type' => 'datetime',
540 540
                             'scalar' => $this->_xh['value'],
541 541
                             'timestamp' => \PhpXmlRpc\Helper\Date::iso8601Decode($this->_xh['value'])
542 542
                         );
543 543
                     } elseif ($this->_xh['vt'] == Value::$xmlrpcBase64) {
544
-                        $this->_xh['value'] = (object)array(
544
+                        $this->_xh['value'] = (object) array(
545 545
                             'xmlrpc_type' => 'base64',
546 546
                             'scalar' => $this->_xh['value']
547 547
                         );
@@ -556,8 +556,8 @@  discard block
 block discarded – undo
556 556
                 // check if we are inside an array or struct:
557 557
                 // if value just built is inside an array, let's move it into array on the stack
558 558
                 $vscount = count($this->_xh['valuestack']);
559
-                if ($vscount && $this->_xh['valuestack'][$vscount - 1]['type'] == 'ARRAY') {
560
-                    $this->_xh['valuestack'][$vscount - 1]['values'][] = $this->_xh['value'];
559
+                if ($vscount && $this->_xh['valuestack'][$vscount-1]['type'] == 'ARRAY') {
560
+                    $this->_xh['valuestack'][$vscount-1]['values'][] = $this->_xh['value'];
561 561
                 }
562 562
                 break;
563 563
 
@@ -584,7 +584,7 @@  discard block
 block discarded – undo
584 584
                     // log if receiving something strange, even though we set the value to false anyway
585 585
                     /// @todo to be consistent with the other types, we should return a value outside the good-value domain, e.g. NULL
586 586
                     if ($this->_xh['ac'] != '0' && strcasecmp($this->_xh['ac'], 'false') !== 0) {
587
-                        if (!$this->handleParsingError('invalid data received in BOOLEAN value: ' .
587
+                        if (!$this->handleParsingError('invalid data received in BOOLEAN value: '.
588 588
                             $this->truncateValueForLog($this->_xh['ac']), __METHOD__)) {
589 589
                             return;
590 590
                         }
@@ -604,7 +604,7 @@  discard block
 block discarded – undo
604 604
                 $this->_xh['vt'] = strtolower($name);
605 605
                 $this->_xh['lv'] = 3; // indicate we've found a value
606 606
                 if (!preg_match(PhpXmlRpc::$xmlrpc_int_format, $this->_xh['ac'])) {
607
-                    if (!$this->handleParsingError('non numeric data received in INT value: ' .
607
+                    if (!$this->handleParsingError('non numeric data received in INT value: '.
608 608
                         $this->truncateValueForLog($this->_xh['ac']), __METHOD__)) {
609 609
                         return;
610 610
                     }
@@ -612,7 +612,7 @@  discard block
 block discarded – undo
612 612
                     $this->_xh['value'] = 'ERROR_NON_NUMERIC_FOUND';
613 613
                 } else {
614 614
                     // it's ok, add it on
615
-                    $this->_xh['value'] = (int)$this->_xh['ac'];
615
+                    $this->_xh['value'] = (int) $this->_xh['ac'];
616 616
                 }
617 617
                 break;
618 618
 
@@ -620,7 +620,7 @@  discard block
 block discarded – undo
620 620
                 $this->_xh['vt'] = Value::$xmlrpcDouble;
621 621
                 $this->_xh['lv'] = 3; // indicate we've found a value
622 622
                 if (!preg_match(PhpXmlRpc::$xmlrpc_double_format, $this->_xh['ac'])) {
623
-                    if (!$this->handleParsingError('non numeric data received in DOUBLE value: ' .
623
+                    if (!$this->handleParsingError('non numeric data received in DOUBLE value: '.
624 624
                         $this->truncateValueForLog($this->_xh['ac']), __METHOD__)) {
625 625
                         return;
626 626
                     }
@@ -628,7 +628,7 @@  discard block
 block discarded – undo
628 628
                     $this->_xh['value'] = 'ERROR_NON_NUMERIC_FOUND';
629 629
                 } else {
630 630
                     // it's ok, add it on
631
-                    $this->_xh['value'] = (float)$this->_xh['ac'];
631
+                    $this->_xh['value'] = (float) $this->_xh['ac'];
632 632
                 }
633 633
                 break;
634 634
 
@@ -636,7 +636,7 @@  discard block
 block discarded – undo
636 636
                 $this->_xh['vt'] = Value::$xmlrpcDateTime;
637 637
                 $this->_xh['lv'] = 3; // indicate we've found a value
638 638
                 if (!preg_match(PhpXmlRpc::$xmlrpc_datetime_format, $this->_xh['ac'])) {
639
-                    if (!$this->handleParsingError('invalid data received in DATETIME value: ' .
639
+                    if (!$this->handleParsingError('invalid data received in DATETIME value: '.
640 640
                         $this->truncateValueForLog($this->_xh['ac']), __METHOD__)) {
641 641
                         return;
642 642
                     }
@@ -647,9 +647,9 @@  discard block
 block discarded – undo
647 647
 
648 648
                     // the default regex used to validate the date string a few lines above should make this case impossible,
649 649
                     // but one never knows...
650
-                    } catch(\Exception $e) {
650
+                    } catch (\Exception $e) {
651 651
                         // what to do? We can not guarantee that a valid date can be created. We return null...
652
-                        if (!$this->handleParsingError('invalid data received in DATETIME value. Error ' .
652
+                        if (!$this->handleParsingError('invalid data received in DATETIME value. Error '.
653 653
                             $e->getMessage(), __METHOD__)) {
654 654
                             return;
655 655
                         }
@@ -666,14 +666,14 @@  discard block
 block discarded – undo
666 666
                     $v = base64_decode($this->_xh['ac'], true);
667 667
                     if ($v === false) {
668 668
                         $this->_xh['isf'] = 2;
669
-                        $this->_xh['isf_reason'] = 'Invalid data received in BASE64 value: '. $this->truncateValueForLog($this->_xh['ac']);
669
+                        $this->_xh['isf_reason'] = 'Invalid data received in BASE64 value: '.$this->truncateValueForLog($this->_xh['ac']);
670 670
                         return;
671 671
                     }
672 672
                 } else {
673 673
                     $v = base64_decode($this->_xh['ac']);
674 674
                     if ($v === '' && $this->_xh['ac'] !== '') {
675 675
                         // only the empty string should decode to the empty string
676
-                        $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': invalid data received in BASE64 value: ' .
676
+                        $this->getLogger()->error('XML-RPC: '.__METHOD__.': invalid data received in BASE64 value: '.
677 677
                             $this->truncateValueForLog($this->_xh['ac']));
678 678
                     }
679 679
                 }
@@ -681,20 +681,20 @@  discard block
 block discarded – undo
681 681
                 break;
682 682
 
683 683
             case 'NAME':
684
-                $this->_xh['valuestack'][count($this->_xh['valuestack']) - 1]['name'] = $this->_xh['ac'];
684
+                $this->_xh['valuestack'][count($this->_xh['valuestack'])-1]['name'] = $this->_xh['ac'];
685 685
                 break;
686 686
 
687 687
             case 'MEMBER':
688 688
                 // add to array in the stack the last element built, unless no VALUE or no NAME were found
689 689
                 if ($this->_xh['vt']) {
690 690
                     $vscount = count($this->_xh['valuestack']);
691
-                    if ($this->_xh['valuestack'][$vscount - 1]['name'] === null) {
691
+                    if ($this->_xh['valuestack'][$vscount-1]['name'] === null) {
692 692
                         if (!$this->handleParsingError('missing NAME inside STRUCT in received xml', __METHOD__)) {
693 693
                             return;
694 694
                         }
695
-                        $this->_xh['valuestack'][$vscount - 1]['name'] = '';
695
+                        $this->_xh['valuestack'][$vscount-1]['name'] = '';
696 696
                     }
697
-                    $this->_xh['valuestack'][$vscount - 1]['values'][$this->_xh['valuestack'][$vscount - 1]['name']] = $this->_xh['value'];
697
+                    $this->_xh['valuestack'][$vscount-1]['values'][$this->_xh['valuestack'][$vscount-1]['name']] = $this->_xh['value'];
698 698
                 } else {
699 699
                     if (!$this->handleParsingError('missing VALUE inside STRUCT in received xml', __METHOD__)) {
700 700
                         return;
@@ -828,7 +828,7 @@  discard block
 block discarded – undo
828 828
     public function xmlrpc_cd($parser, $data)
829 829
     {
830 830
         // skip processing if xml fault already detected
831
-        if ($this->_xh['isf'] >= 2) {
831
+        if ($this->_xh['isf']>=2) {
832 832
             return;
833 833
         }
834 834
 
@@ -850,7 +850,7 @@  discard block
 block discarded – undo
850 850
     public function xmlrpc_dh($parser, $data)
851 851
     {
852 852
         // skip processing if xml fault already detected
853
-        if ($this->_xh['isf'] >= 2) {
853
+        if ($this->_xh['isf']>=2) {
854 854
             return;
855 855
         }
856 856
 
@@ -930,8 +930,8 @@  discard block
 block discarded – undo
930 930
         // SPACE:         (#x20 | #x9 | #xD | #xA)+ === [ \x9\xD\xA]+
931 931
         // EQ:            SPACE?=SPACE? === [ \x9\xD\xA]*=[ \x9\xD\xA]*
932 932
         // We could be stricter on version number: VersionNum ::= '1.' [0-9]+
933
-        if (preg_match('/^<\?xml\s+version\s*=\s*' . "((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))" .
934
-            '\s+encoding\s*=\s*' . "((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/",
933
+        if (preg_match('/^<\?xml\s+version\s*=\s*'."((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))".
934
+            '\s+encoding\s*=\s*'."((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/",
935 935
             $xmlChunk, $matches)) {
936 936
             return strtoupper(substr($matches[2], 1, -1));
937 937
         }
@@ -949,7 +949,7 @@  discard block
 block discarded – undo
949 949
             // NB: mb_detect likes to call it ascii, xml parser likes to call it US_ASCII...
950 950
             // IANA also likes better US-ASCII, so go with it
951 951
             if ($enc == 'ASCII') {
952
-                $enc = 'US-' . $enc;
952
+                $enc = 'US-'.$enc;
953 953
             }
954 954
 
955 955
             return $enc;
@@ -990,8 +990,8 @@  discard block
 block discarded – undo
990 990
         // SPACE:         (#x20 | #x9 | #xD | #xA)+ === [ \x9\xD\xA]+
991 991
         // EQ:            SPACE?=SPACE? === [ \x9\xD\xA]*=[ \x9\xD\xA]*
992 992
         // We could be stricter on version number: VersionNum ::= '1.' [0-9]+
993
-        if (preg_match('/^<\?xml\s+version\s*=\s*' . "((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))" .
994
-            '\s+encoding\s*=\s*' . "((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/",
993
+        if (preg_match('/^<\?xml\s+version\s*=\s*'."((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))".
994
+            '\s+encoding\s*=\s*'."((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/",
995 995
             $xmlChunk)) {
996 996
             return true;
997 997
         }
@@ -1011,7 +1011,7 @@  discard block
 block discarded – undo
1011 1011
             $this->_xh['isf_reason'] = ucfirst($message);
1012 1012
             return false;
1013 1013
         } else {
1014
-            $this->getLogger()->error('XML-RPC: ' . ($method != '' ? $method . ': ' : '') . $message);
1014
+            $this->getLogger()->error('XML-RPC: '.($method != '' ? $method.': ' : '').$message);
1015 1015
             return true;
1016 1016
         }
1017 1017
     }
@@ -1023,8 +1023,8 @@  discard block
 block discarded – undo
1023 1023
      */
1024 1024
     protected function truncateValueForLog($data)
1025 1025
     {
1026
-        if (strlen($data) > $this->maxLogValueLength) {
1027
-            return substr($data, 0, $this->maxLogValueLength - 3) . '...';
1026
+        if (strlen($data)>$this->maxLogValueLength) {
1027
+            return substr($data, 0, $this->maxLogValueLength-3).'...';
1028 1028
         }
1029 1029
 
1030 1030
         return $data;
@@ -1045,7 +1045,7 @@  discard block
 block discarded – undo
1045 1045
     public function xmlrpc_se_any($parser, $name, $attrs)
1046 1046
     {
1047 1047
         // this will be spamming the log if this method is in use...
1048
-        $this->logDeprecation('Method ' . __METHOD__ . ' is deprecated');
1048
+        $this->logDeprecation('Method '.__METHOD__.' is deprecated');
1049 1049
 
1050 1050
         $this->xmlrpc_se($parser, $name, $attrs, true);
1051 1051
     }
@@ -1055,12 +1055,12 @@  discard block
 block discarded – undo
1055 1055
         switch ($name) {
1056 1056
             case '_xh':
1057 1057
             case 'xmlrpc_valid_parents':
1058
-                $this->logDeprecation('Getting property XMLParser::' . $name . ' is deprecated');
1058
+                $this->logDeprecation('Getting property XMLParser::'.$name.' is deprecated');
1059 1059
                 return $this->$name;
1060 1060
             default:
1061 1061
                 /// @todo throw instead? There are very few other places where the lib trigger errors which can potentially reach stdout...
1062 1062
                 $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
1063
-                trigger_error('Undefined property via __get(): ' . $name . ' in ' . $trace[0]['file'] . ' on line ' . $trace[0]['line'], E_USER_WARNING);
1063
+                trigger_error('Undefined property via __get(): '.$name.' in '.$trace[0]['file'].' on line '.$trace[0]['line'], E_USER_WARNING);
1064 1064
                 $result = null;
1065 1065
                 return $result;
1066 1066
         }
@@ -1071,18 +1071,18 @@  discard block
 block discarded – undo
1071 1071
         switch ($name) {
1072 1072
             // this should only ever be called by subclasses which overtook `parse()`
1073 1073
             case 'accept':
1074
-                $this->logDeprecation('Setting property XMLParser::' . $name . ' is deprecated');
1074
+                $this->logDeprecation('Setting property XMLParser::'.$name.' is deprecated');
1075 1075
                 $this->current_parsing_options['accept'] = $value;
1076 1076
                 break;
1077 1077
             case '_xh':
1078 1078
             case 'xmlrpc_valid_parents':
1079
-                $this->logDeprecation('Setting property XMLParser::' . $name . ' is deprecated');
1079
+                $this->logDeprecation('Setting property XMLParser::'.$name.' is deprecated');
1080 1080
                 $this->$name = $value;
1081 1081
                 break;
1082 1082
             default:
1083 1083
                 /// @todo throw instead? There are very few other places where the lib trigger errors which can potentially reach stdout...
1084 1084
                 $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
1085
-                trigger_error('Undefined property via __set(): ' . $name . ' in ' . $trace[0]['file'] . ' on line ' . $trace[0]['line'], E_USER_WARNING);
1085
+                trigger_error('Undefined property via __set(): '.$name.' in '.$trace[0]['file'].' on line '.$trace[0]['line'], E_USER_WARNING);
1086 1086
         }
1087 1087
     }
1088 1088
 
@@ -1090,11 +1090,11 @@  discard block
 block discarded – undo
1090 1090
     {
1091 1091
         switch ($name) {
1092 1092
             case 'accept':
1093
-                $this->logDeprecation('Checking property XMLParser::' . $name . ' is deprecated');
1093
+                $this->logDeprecation('Checking property XMLParser::'.$name.' is deprecated');
1094 1094
                 return isset($this->current_parsing_options['accept']);
1095 1095
             case '_xh':
1096 1096
             case 'xmlrpc_valid_parents':
1097
-                $this->logDeprecation('Checking property XMLParser::' . $name . ' is deprecated');
1097
+                $this->logDeprecation('Checking property XMLParser::'.$name.' is deprecated');
1098 1098
                 return isset($this->$name);
1099 1099
             default:
1100 1100
                 return false;
@@ -1106,18 +1106,18 @@  discard block
 block discarded – undo
1106 1106
         switch ($name) {
1107 1107
             // q: does this make sense at all?
1108 1108
             case 'accept':
1109
-                $this->logDeprecation('Unsetting property XMLParser::' . $name . ' is deprecated');
1109
+                $this->logDeprecation('Unsetting property XMLParser::'.$name.' is deprecated');
1110 1110
                 unset($this->current_parsing_options['accept']);
1111 1111
                 break;
1112 1112
             case '_xh':
1113 1113
             case 'xmlrpc_valid_parents':
1114
-                $this->logDeprecation('Unsetting property XMLParser::' . $name . ' is deprecated');
1114
+                $this->logDeprecation('Unsetting property XMLParser::'.$name.' is deprecated');
1115 1115
                 unset($this->$name);
1116 1116
                 break;
1117 1117
             default:
1118 1118
                 /// @todo throw instead? There are very few other places where the lib trigger errors which can potentially reach stdout...
1119 1119
                 $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
1120
-                trigger_error('Undefined property via __unset(): ' . $name . ' in ' . $trace[0]['file'] . ' on line ' . $trace[0]['line'], E_USER_WARNING);
1120
+                trigger_error('Undefined property via __unset(): '.$name.' in '.$trace[0]['file'].' on line '.$trace[0]['line'], E_USER_WARNING);
1121 1121
         }
1122 1122
     }
1123 1123
 }
Please login to merge, or discard this patch.
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -272,19 +272,25 @@
 block discarded – undo
272 272
             }
273 273
         /// @todo bump minimum php version to 5.5 and use a finally clause instead of doing cleanup 3 times
274 274
         } catch (\Exception $e) {
275
-            if (PHP_MAJOR_VERSION < 8) xml_parser_free($parser);
275
+            if (PHP_MAJOR_VERSION < 8) {
276
+                xml_parser_free($parser);
277
+            }
276 278
             $this->current_parsing_options = array();
277 279
             /// @todo should we set $this->_xh['isf'] and $this->_xh['isf_reason'] ?
278 280
             throw $e;
279 281
         } catch (\Error $e) {
280
-            if (PHP_MAJOR_VERSION < 8) xml_parser_free($parser);
282
+            if (PHP_MAJOR_VERSION < 8) {
283
+                xml_parser_free($parser);
284
+            }
281 285
             $this->current_parsing_options = array();
282 286
             //$this->accept = $prevAccept;
283 287
             /// @todo should we set $this->_xh['isf'] and $this->_xh['isf_reason'] ?
284 288
             throw $e;
285 289
         }
286 290
 
287
-        if (PHP_MAJOR_VERSION < 8) xml_parser_free($parser);
291
+        if (PHP_MAJOR_VERSION < 8) {
292
+            xml_parser_free($parser);
293
+        }
288 294
         $this->current_parsing_options = array();
289 295
 
290 296
         // BC
Please login to merge, or discard this patch.
tests/WebTestCase.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,9 @@
 block discarded – undo
41 41
         }
42 42
         $page = curl_exec($ch);
43 43
         $info = curl_getinfo($ch);
44
-        if (PHP_MAJOR_VERSION < 8) curl_close($ch);
44
+        if (PHP_MAJOR_VERSION < 8) {
45
+            curl_close($ch);
46
+        }
45 47
 
46 48
         $this->assertNotFalse($page, 'Curl request should not fail. Url: ' . @$info['url'] . ', Http code: ' . @$info['http_code']);
47 49
         if (!$emptyPageOk) {
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-include_once __DIR__ . '/ServerAwareTestCase.php';
3
+include_once __DIR__.'/ServerAwareTestCase.php';
4 4
 
5 5
 use PhpXmlRpc\Client;
6 6
 
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
      */
18 18
     protected function request($path, $method = 'GET', $payload = '', $emptyPageOk = false)
19 19
     {
20
-        $url = $this->baseUrl . $path;
20
+        $url = $this->baseUrl.$path;
21 21
 
22 22
         $ch = curl_init($url);
23 23
         curl_setopt_array($ch, array(
@@ -31,21 +31,21 @@  discard block
 block discarded – undo
31 31
                 CURLOPT_POSTFIELDS => $payload
32 32
             ));
33 33
         }
34
-        $cookie = 'PHPUNIT_RANDOM_TEST_ID=' . static::$randId;
34
+        $cookie = 'PHPUNIT_RANDOM_TEST_ID='.static::$randId;
35 35
         if ($this->collectCodeCoverageInformation)
36 36
         {
37
-            $cookie .= '; PHPUNIT_SELENIUM_TEST_ID=' . $this->testId;
37
+            $cookie .= '; PHPUNIT_SELENIUM_TEST_ID='.$this->testId;
38 38
         }
39 39
         curl_setopt($ch, CURLOPT_COOKIE, $cookie);
40 40
 
41
-        if ($this->args['DEBUG'] > 0) {
41
+        if ($this->args['DEBUG']>0) {
42 42
             curl_setopt($ch, CURLOPT_VERBOSE, 1);
43 43
         }
44 44
         $page = curl_exec($ch);
45 45
         $info = curl_getinfo($ch);
46
-        if (PHP_MAJOR_VERSION < 8) curl_close($ch);
46
+        if (PHP_MAJOR_VERSION<8) curl_close($ch);
47 47
 
48
-        $this->assertNotFalse($page, 'Curl request should not fail. Url: ' . @$info['url'] . ', Http code: ' . @$info['http_code']);
48
+        $this->assertNotFalse($page, 'Curl request should not fail. Url: '.@$info['url'].', Http code: '.@$info['http_code']);
49 49
         if (!$emptyPageOk) {
50 50
             $this->assertNotEquals('', $page, 'Retrieved web page should not be empty');
51 51
         }
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      */
65 65
     protected function newClient($path)
66 66
     {
67
-        $client = new Client($this->baseUrl . $path);
67
+        $client = new Client($this->baseUrl.$path);
68 68
         $client->setCookie('PHPUNIT_RANDOM_TEST_ID', static::$randId);
69 69
         if ($this->collectCodeCoverageInformation) {
70 70
             $client->setCookie('PHPUNIT_SELENIUM_TEST_ID', $this->testId);
Please login to merge, or discard this patch.
src/Response.php 1 patch
Spacing   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
                 // user declares the type of resp value: we "almost" trust it... but log errors just in case
79 79
                 if (($this->valtyp == 'xmlrpcvals' && (!is_a($this->val, 'PhpXmlRpc\Value'))) ||
80 80
                     ($this->valtyp == 'xml' && (!is_string($this->val)))) {
81
-                    $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': value passed in does not match type ' . $valType);
81
+                    $this->getLogger()->error('XML-RPC: '.__METHOD__.': value passed in does not match type '.$valType);
82 82
                 }
83 83
             }
84 84
         }
@@ -165,34 +165,34 @@  discard block
 block discarded – undo
165 165
     public function serialize($charsetEncoding = '')
166 166
     {
167 167
         if ($charsetEncoding != '') {
168
-            $this->content_type = 'text/xml; charset=' . $charsetEncoding;
168
+            $this->content_type = 'text/xml; charset='.$charsetEncoding;
169 169
         } else {
170 170
             $this->content_type = 'text/xml';
171 171
         }
172 172
 
173 173
         if (PhpXmlRpc::$xmlrpc_null_apache_encoding) {
174
-            $result = "<methodResponse xmlns:ex=\"" . PhpXmlRpc::$xmlrpc_null_apache_encoding_ns . "\">\n";
174
+            $result = "<methodResponse xmlns:ex=\"".PhpXmlRpc::$xmlrpc_null_apache_encoding_ns."\">\n";
175 175
         } else {
176 176
             $result = "<methodResponse>\n";
177 177
         }
178 178
         if ($this->errno) {
179 179
             // Let non-ASCII response messages be tolerated by clients by xml-encoding non ascii chars
180
-            $result .= "<fault>\n" .
181
-                "<value>\n<struct><member><name>faultCode</name>\n<value><int>" . $this->errno .
182
-                "</int></value>\n</member>\n<member>\n<name>faultString</name>\n<value><string>" .
183
-                $this->getCharsetEncoder()->encodeEntities($this->errstr, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) .
180
+            $result .= "<fault>\n".
181
+                "<value>\n<struct><member><name>faultCode</name>\n<value><int>".$this->errno.
182
+                "</int></value>\n</member>\n<member>\n<name>faultString</name>\n<value><string>".
183
+                $this->getCharsetEncoder()->encodeEntities($this->errstr, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding).
184 184
                 "</string></value>\n</member>\n</struct>\n</value>\n</fault>";
185 185
         } else {
186 186
             if (is_object($this->val) && is_a($this->val, 'PhpXmlRpc\Value')) {
187
-                $result .= "<params>\n<param>\n" . $this->val->serialize($charsetEncoding) . "</param>\n</params>";
187
+                $result .= "<params>\n<param>\n".$this->val->serialize($charsetEncoding)."</param>\n</params>";
188 188
             } else if (is_string($this->val) && $this->valtyp == 'xml') {
189
-                $result .= "<params>\n<param>\n" .
190
-                    $this->val .
189
+                $result .= "<params>\n<param>\n".
190
+                    $this->val.
191 191
                     "</param>\n</params>";
192 192
             } else if ($this->valtyp == 'phpvals') {
193 193
                     $encoder = new Encoder();
194 194
                     $val = $encoder->encode($this->val);
195
-                    $result .= "<params>\n<param>\n" . $val->serialize($charsetEncoding) . "</param>\n</params>";
195
+                    $result .= "<params>\n<param>\n".$val->serialize($charsetEncoding)."</param>\n</params>";
196 196
             } else {
197 197
                 throw new StateErrorException('cannot serialize xmlrpc response objects whose content is native php values');
198 198
             }
@@ -211,9 +211,9 @@  discard block
 block discarded – undo
211 211
     public function xml_header($charsetEncoding = '')
212 212
     {
213 213
         if ($charsetEncoding != '') {
214
-            return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\"?" . ">\n";
214
+            return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\"?".">\n";
215 215
         } else {
216
-            return "<?xml version=\"1.0\"?" . ">\n";
216
+            return "<?xml version=\"1.0\"?".">\n";
217 217
         }
218 218
     }
219 219
 
@@ -229,21 +229,21 @@  discard block
 block discarded – undo
229 229
             case 'errstr':
230 230
             case 'payload':
231 231
             case 'content_type':
232
-                $this->logDeprecation('Getting property Response::' . $name . ' is deprecated');
232
+                $this->logDeprecation('Getting property Response::'.$name.' is deprecated');
233 233
                 return $this->$name;
234 234
             case 'hdrs':
235
-                $this->logDeprecation('Getting property Response::' . $name . ' is deprecated');
235
+                $this->logDeprecation('Getting property Response::'.$name.' is deprecated');
236 236
                 return $this->httpResponse['headers'];
237 237
             case '_cookies':
238
-                $this->logDeprecation('Getting property Response::' . $name . ' is deprecated');
238
+                $this->logDeprecation('Getting property Response::'.$name.' is deprecated');
239 239
                 return $this->httpResponse['cookies'];
240 240
             case 'raw_data':
241
-                $this->logDeprecation('Getting property Response::' . $name . ' is deprecated');
241
+                $this->logDeprecation('Getting property Response::'.$name.' is deprecated');
242 242
                 return $this->httpResponse['raw_data'];
243 243
             default:
244 244
                 /// @todo throw instead? There are very few other places where the lib trigger errors which can potentially reach stdout...
245 245
                 $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
246
-                trigger_error('Undefined property via __get(): ' . $name . ' in ' . $trace[0]['file'] . ' on line ' . $trace[0]['line'], E_USER_WARNING);
246
+                trigger_error('Undefined property via __get(): '.$name.' in '.$trace[0]['file'].' on line '.$trace[0]['line'], E_USER_WARNING);
247 247
                 $result = null;
248 248
                 return $result;
249 249
         }
@@ -258,25 +258,25 @@  discard block
 block discarded – undo
258 258
             case 'errstr':
259 259
             case 'payload':
260 260
             case 'content_type':
261
-                $this->logDeprecation('Setting property Response::' . $name . ' is deprecated');
261
+                $this->logDeprecation('Setting property Response::'.$name.' is deprecated');
262 262
                 $this->$name = $value;
263 263
                 break;
264 264
             case 'hdrs':
265
-                $this->logDeprecation('Setting property Response::' . $name . ' is deprecated');
265
+                $this->logDeprecation('Setting property Response::'.$name.' is deprecated');
266 266
                 $this->httpResponse['headers'] = $value;
267 267
                 break;
268 268
             case '_cookies':
269
-                $this->logDeprecation('Setting property Response::' . $name . ' is deprecated');
269
+                $this->logDeprecation('Setting property Response::'.$name.' is deprecated');
270 270
                 $this->httpResponse['cookies'] = $value;
271 271
                 break;
272 272
             case 'raw_data':
273
-                $this->logDeprecation('Setting property Response::' . $name . ' is deprecated');
273
+                $this->logDeprecation('Setting property Response::'.$name.' is deprecated');
274 274
                 $this->httpResponse['raw_data'] = $value;
275 275
                 break;
276 276
             default:
277 277
                 /// @todo throw instead? There are very few other places where the lib trigger errors which can potentially reach stdout...
278 278
                 $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
279
-                trigger_error('Undefined property via __set(): ' . $name . ' in ' . $trace[0]['file'] . ' on line ' . $trace[0]['line'], E_USER_WARNING);
279
+                trigger_error('Undefined property via __set(): '.$name.' in '.$trace[0]['file'].' on line '.$trace[0]['line'], E_USER_WARNING);
280 280
         }
281 281
     }
282 282
 
@@ -289,16 +289,16 @@  discard block
 block discarded – undo
289 289
             case 'errstr':
290 290
             case 'payload':
291 291
             case 'content_type':
292
-                $this->logDeprecation('Checking property Response::' . $name . ' is deprecated');
292
+                $this->logDeprecation('Checking property Response::'.$name.' is deprecated');
293 293
                 return isset($this->$name);
294 294
             case 'hdrs':
295
-                $this->logDeprecation('Checking property Response::' . $name . ' is deprecated');
295
+                $this->logDeprecation('Checking property Response::'.$name.' is deprecated');
296 296
                 return isset($this->httpResponse['headers']);
297 297
             case '_cookies':
298
-                $this->logDeprecation('Checking property Response::' . $name . ' is deprecated');
298
+                $this->logDeprecation('Checking property Response::'.$name.' is deprecated');
299 299
                 return isset($this->httpResponse['cookies']);
300 300
             case 'raw_data':
301
-                $this->logDeprecation('Checking property Response::' . $name . ' is deprecated');
301
+                $this->logDeprecation('Checking property Response::'.$name.' is deprecated');
302 302
                 return isset($this->httpResponse['raw_data']);
303 303
             default:
304 304
                 return false;
@@ -314,25 +314,25 @@  discard block
 block discarded – undo
314 314
             case 'errstr':
315 315
             case 'payload':
316 316
             case 'content_type':
317
-                $this->logDeprecation('Unsetting property Response::' . $name . ' is deprecated');
317
+                $this->logDeprecation('Unsetting property Response::'.$name.' is deprecated');
318 318
                 unset($this->$name);
319 319
                 break;
320 320
             case 'hdrs':
321
-                $this->logDeprecation('Unsetting property Response::' . $name . ' is deprecated');
321
+                $this->logDeprecation('Unsetting property Response::'.$name.' is deprecated');
322 322
                 unset($this->httpResponse['headers']);
323 323
                 break;
324 324
             case '_cookies':
325
-                $this->logDeprecation('Unsetting property Response::' . $name . ' is deprecated');
325
+                $this->logDeprecation('Unsetting property Response::'.$name.' is deprecated');
326 326
                 unset($this->httpResponse['cookies']);
327 327
                 break;
328 328
             case 'raw_data':
329
-                $this->logDeprecation('Unsetting property Response::' . $name . ' is deprecated');
329
+                $this->logDeprecation('Unsetting property Response::'.$name.' is deprecated');
330 330
                 unset($this->httpResponse['raw_data']);
331 331
                 break;
332 332
             default:
333 333
                 /// @todo throw instead? There are very few other places where the lib trigger errors which can potentially reach stdout...
334 334
                 $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
335
-                trigger_error('Undefined property via __unset(): ' . $name . ' in ' . $trace[0]['file'] . ' on line ' . $trace[0]['line'], E_USER_WARNING);
335
+                trigger_error('Undefined property via __unset(): '.$name.' in '.$trace[0]['file'].' on line '.$trace[0]['line'], E_USER_WARNING);
336 336
         }
337 337
     }
338 338
 }
Please login to merge, or discard this patch.
src/Helper/Http.php 1 patch
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -28,12 +28,12 @@  discard block
 block discarded – undo
28 28
 
29 29
         // read chunk-size, chunk-extension (if any) and crlf
30 30
         // get the position of the linebreak
31
-        $chunkEnd = strpos($buffer, "\r\n") + 2;
31
+        $chunkEnd = strpos($buffer, "\r\n")+2;
32 32
         $temp = substr($buffer, 0, $chunkEnd);
33 33
         $chunkSize = hexdec(trim($temp));
34 34
         $chunkStart = $chunkEnd;
35
-        while ($chunkSize > 0) {
36
-            $chunkEnd = strpos($buffer, "\r\n", $chunkStart + $chunkSize);
35
+        while ($chunkSize>0) {
36
+            $chunkEnd = strpos($buffer, "\r\n", $chunkStart+$chunkSize);
37 37
 
38 38
             // just in case we got a broken connection
39 39
             if ($chunkEnd == false) {
@@ -45,19 +45,19 @@  discard block
 block discarded – undo
45 45
             }
46 46
 
47 47
             // read chunk-data and crlf
48
-            $chunk = substr($buffer, $chunkStart, $chunkEnd - $chunkStart);
48
+            $chunk = substr($buffer, $chunkStart, $chunkEnd-$chunkStart);
49 49
             // append chunk-data to entity-body
50 50
             $new .= $chunk;
51 51
             // length := length + chunk-size
52 52
             $length += strlen($chunk);
53 53
             // read chunk-size and crlf
54
-            $chunkStart = $chunkEnd + 2;
54
+            $chunkStart = $chunkEnd+2;
55 55
 
56
-            $chunkEnd = strpos($buffer, "\r\n", $chunkStart) + 2;
56
+            $chunkEnd = strpos($buffer, "\r\n", $chunkStart)+2;
57 57
             if ($chunkEnd == false) {
58 58
                 break; // just in case we got a broken connection
59 59
             }
60
-            $temp = substr($buffer, $chunkStart, $chunkEnd - $chunkStart);
60
+            $temp = substr($buffer, $chunkStart, $chunkEnd-$chunkStart);
61 61
             $chunkSize = hexdec(trim($temp));
62 62
             $chunkStart = $chunkEnd;
63 63
         }
@@ -86,11 +86,11 @@  discard block
 block discarded – undo
86 86
             // Look for CR/LF or simple LF as line separator (even though it is not valid http)
87 87
             $pos = strpos($data, "\r\n\r\n");
88 88
             if ($pos || is_int($pos)) {
89
-                $bd = $pos + 4;
89
+                $bd = $pos+4;
90 90
             } else {
91 91
                 $pos = strpos($data, "\n\n");
92 92
                 if ($pos || is_int($pos)) {
93
-                    $bd = $pos + 2;
93
+                    $bd = $pos+2;
94 94
                 } else {
95 95
                     // No separation between response headers and body: fault?
96 96
                     $bd = 0;
@@ -100,8 +100,8 @@  discard block
 block discarded – undo
100 100
                 // this filters out all http headers from proxy. maybe we could take them into account, too?
101 101
                 $data = substr($data, $bd);
102 102
             } else {
103
-                $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': HTTPS via proxy error, tunnel connection possibly failed');
104
-                throw new HttpException(PhpXmlRpc::$xmlrpcstr['http_error'] . ' (HTTPS via proxy error, tunnel connection possibly failed)', PhpXmlRpc::$xmlrpcerr['http_error']);
103
+                $this->getLogger()->error('XML-RPC: '.__METHOD__.': HTTPS via proxy error, tunnel connection possibly failed');
104
+                throw new HttpException(PhpXmlRpc::$xmlrpcstr['http_error'].' (HTTPS via proxy error, tunnel connection possibly failed)', PhpXmlRpc::$xmlrpcerr['http_error']);
105 105
             }
106 106
         }
107 107
 
@@ -134,19 +134,19 @@  discard block
 block discarded – undo
134 134
         }
135 135
 
136 136
         if (!in_array($httpResponse['status_code'], $this->acceptedStatusCodes)) {
137
-            $errstr = substr($data, 0, strpos($data, "\n") - 1);
138
-            $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': HTTP error, got response: ' . $errstr);
139
-            throw new HttpException(PhpXmlRpc::$xmlrpcstr['http_error'] . ' (' . $errstr . ')', PhpXmlRpc::$xmlrpcerr['http_error'], null, $httpResponse['status_code']);
137
+            $errstr = substr($data, 0, strpos($data, "\n")-1);
138
+            $this->getLogger()->error('XML-RPC: '.__METHOD__.': HTTP error, got response: '.$errstr);
139
+            throw new HttpException(PhpXmlRpc::$xmlrpcstr['http_error'].' ('.$errstr.')', PhpXmlRpc::$xmlrpcerr['http_error'], null, $httpResponse['status_code']);
140 140
         }
141 141
 
142 142
         // be tolerant to usage of \n instead of \r\n to separate headers and data (even though it is not valid http)
143 143
         $pos = strpos($data, "\r\n\r\n");
144 144
         if ($pos || is_int($pos)) {
145
-            $bd = $pos + 4;
145
+            $bd = $pos+4;
146 146
         } else {
147 147
             $pos = strpos($data, "\n\n");
148 148
             if ($pos || is_int($pos)) {
149
-                $bd = $pos + 2;
149
+                $bd = $pos+2;
150 150
             } else {
151 151
                 // No separation between response headers and body: fault?
152 152
                 // we could take some action here instead of going on...
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
         foreach ($ar as $line) {
161 161
             // take care of (multi-line) headers and cookies
162 162
             $arr = explode(':', $line, 2);
163
-            if (count($arr) > 1) {
163
+            if (count($arr)>1) {
164 164
                 /// @todo according to https://www.rfc-editor.org/rfc/rfc7230#section-3.2.4, we should reject with error
165 165
                 ///       400 any messages where a space is present between the header name and colon
166 166
                 $headerName = strtolower(trim($arr[0]));
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
                     $cookie = $arr[1];
169 169
                     // glue together all received cookies, using a comma to separate them (same as php does with getallheaders())
170 170
                     if (isset($httpResponse['headers'][$headerName])) {
171
-                        $httpResponse['headers'][$headerName] .= ', ' . trim($cookie);
171
+                        $httpResponse['headers'][$headerName] .= ', '.trim($cookie);
172 172
                     } else {
173 173
                         $httpResponse['headers'][$headerName] = trim($cookie);
174 174
                     }
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
             } elseif (isset($headerName)) {
200 200
                 /// @todo improve this: 1. check that the line starts with a space or tab; 2. according to
201 201
                 ///       https://www.rfc-editor.org/rfc/rfc7230#section-3.2.4, we should flat out refuse these messages
202
-                $httpResponse['headers'][$headerName] .= ' ' . trim($line);
202
+                $httpResponse['headers'][$headerName] .= ' '.trim($line);
203 203
             }
204 204
         }
205 205
 
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
             // Decode chunked encoding sent by http 1.1 servers
223 223
             if (isset($httpResponse['headers']['transfer-encoding']) && $httpResponse['headers']['transfer-encoding'] == 'chunked') {
224 224
                 if (!$data = static::decodeChunked($data)) {
225
-                    $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': errors occurred when trying to rebuild the chunked data received from server');
225
+                    $this->getLogger()->error('XML-RPC: '.__METHOD__.': errors occurred when trying to rebuild the chunked data received from server');
226 226
                     throw new HttpException(PhpXmlRpc::$xmlrpcstr['dechunk_fail'], PhpXmlRpc::$xmlrpcerr['dechunk_fail'], null, $httpResponse['status_code']);
227 227
                 }
228 228
             }
@@ -237,19 +237,19 @@  discard block
 block discarded – undo
237 237
                         if ($httpResponse['headers']['content-encoding'] == 'deflate' && $degzdata = @gzuncompress($data)) {
238 238
                             $data = $degzdata;
239 239
                             if ($debug) {
240
-                                $this->getLogger()->debug("---INFLATED RESPONSE---[" . strlen($data) . " chars]---\n$data\n---END---");
240
+                                $this->getLogger()->debug("---INFLATED RESPONSE---[".strlen($data)." chars]---\n$data\n---END---");
241 241
                             }
242 242
                         } elseif ($httpResponse['headers']['content-encoding'] == 'gzip' && $degzdata = @gzinflate(substr($data, 10))) {
243 243
                             $data = $degzdata;
244 244
                             if ($debug) {
245
-                                $this->getLogger()->debug("---INFLATED RESPONSE---[" . strlen($data) . " chars]---\n$data\n---END---");
245
+                                $this->getLogger()->debug("---INFLATED RESPONSE---[".strlen($data)." chars]---\n$data\n---END---");
246 246
                             }
247 247
                         } else {
248
-                            $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': errors occurred when trying to decode the deflated data received from server');
248
+                            $this->getLogger()->error('XML-RPC: '.__METHOD__.': errors occurred when trying to decode the deflated data received from server');
249 249
                             throw new HttpException(PhpXmlRpc::$xmlrpcstr['decompress_fail'], PhpXmlRpc::$xmlrpcerr['decompress_fail'], null, $httpResponse['status_code']);
250 250
                         }
251 251
                     } else {
252
-                        $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': the server sent deflated data. Your php install must have the Zlib extension compiled in to support this.');
252
+                        $this->getLogger()->error('XML-RPC: '.__METHOD__.': the server sent deflated data. Your php install must have the Zlib extension compiled in to support this.');
253 253
                         throw new HttpException(PhpXmlRpc::$xmlrpcstr['cannot_decompress'], PhpXmlRpc::$xmlrpcerr['cannot_decompress'], null, $httpResponse['status_code']);
254 254
                     }
255 255
                 }
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
     public function parseAcceptHeader($header)
270 270
     {
271 271
         $accepted = array();
272
-        foreach(explode(',', $header) as $c) {
272
+        foreach (explode(',', $header) as $c) {
273 273
             if (preg_match('/^([^;]+); *q=([0-9.]+)/', $c, $matches)) {
274 274
                 $c = $matches[1];
275 275
                 $w = $matches[2];
Please login to merge, or discard this patch.
debugger/action.php 3 patches
Braces   +9 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,12 @@  discard block
 block discarded – undo
15 15
 <html lang="en">
16 16
 <head>
17 17
     <link rel="icon" type="image/vnd.microsoft.icon" href="favicon.ico">
18
-    <title><?php if (defined('DEFAULT_WSTYPE') && (DEFAULT_WSTYPE == 1 || DEFAULT_WSTYPE == 2)) echo 'JSON-RPC'; else echo 'XML-RPC'; ?> Debugger</title>
18
+    <title><?php if (defined('DEFAULT_WSTYPE') && (DEFAULT_WSTYPE == 1 || DEFAULT_WSTYPE == 2)) {
19
+    echo 'JSON-RPC';
20
+} else {
21
+    echo 'XML-RPC';
22
+}
23
+?> Debugger</title>
19 24
     <meta name="robots" content="index,nofollow"/>
20 25
     <style type="text/css">
21 26
         <!--
@@ -404,7 +409,9 @@  discard block
 block discarded – undo
404 409
                                 echo "<code>OUT:&nbsp;" . htmlspecialchars($ret->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) . "<br />IN: (";
405 410
                                 if ($x->count() > 1) {
406 411
                                     foreach($x as $k => $y) {
407
-                                        if ($k == 0) continue;
412
+                                        if ($k == 0) {
413
+                                            continue;
414
+                                        }
408 415
                                         echo htmlspecialchars($y->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding);
409 416
                                         if ($wstype == 1 || $wstype == 2) {
410 417
                                             switch($y->scalarval()) {
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,8 +79,8 @@
 block discarded – undo
79 79
 <?php
80 80
 
81 81
 global $inputcharset, $debug, $protocol, $run, $hasjsonrpcclient, $hasjsonrpc2, $wstype, $id, $host, $port, $path, $action,
82
-       $method, $methodsig, $payload, $alt_payload, $username, $password, $authtype, $verifyhost, $verifypeer, $cainfo, $proxy,
83
-       $proxyuser, $proxypwd, $timeout, $requestcompression, $responsecompression, $clientcookies;
82
+        $method, $methodsig, $payload, $alt_payload, $username, $password, $authtype, $verifyhost, $verifypeer, $cainfo, $proxy,
83
+        $proxyuser, $proxypwd, $timeout, $requestcompression, $responsecompression, $clientcookies;
84 84
 
85 85
 include __DIR__ . '/common.php';
86 86
 
Please login to merge, or discard this patch.
Spacing   +123 added lines, -123 removed lines patch added patch discarded remove patch
@@ -82,13 +82,13 @@  discard block
 block discarded – undo
82 82
        $method, $methodsig, $payload, $alt_payload, $username, $password, $authtype, $verifyhost, $verifypeer, $cainfo, $proxy,
83 83
        $proxyuser, $proxypwd, $timeout, $requestcompression, $responsecompression, $clientcookies;
84 84
 
85
-include __DIR__ . '/common.php';
85
+include __DIR__.'/common.php';
86 86
 
87 87
 if ($action) {
88 88
 
89 89
     // avoid php hanging when using the builtin webserver and sending requests to itself
90 90
     $skip = false;
91
-    if (php_sapi_name() === 'cli-server' && ((int)getenv('PHP_CLI_SERVER_WORKERS') < 2)) {
91
+    if (php_sapi_name() === 'cli-server' && ((int) getenv('PHP_CLI_SERVER_WORKERS')<2)) {
92 92
         $localHost = explode(':', $_SERVER['HTTP_HOST']);
93 93
         /// @todo support also case where port is null (on either side), and when there is a Proxy in the parameters,
94 94
         ///       and that proxy is us
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
     if (!$skip) {
102 102
         // make sure the script waits long enough for the call to complete...
103 103
         if ($timeout) {
104
-            set_time_limit($timeout + 10);
104
+            set_time_limit($timeout+10);
105 105
         }
106 106
 
107 107
         if ($wstype == 1 || $wstype == 2) {
@@ -128,13 +128,13 @@  discard block
 block discarded – undo
128 128
             $server = "$host$path";
129 129
         }
130 130
         if ($protocol == 2 || $protocol == 3) {
131
-            $server = 'https://' . $server;
131
+            $server = 'https://'.$server;
132 132
         } else {
133
-            $server = 'http://' . $server;
133
+            $server = 'http://'.$server;
134 134
         }
135 135
         if ($proxy != '') {
136 136
             $pproxy = explode(':', $proxy);
137
-            if (count($pproxy) > 1) {
137
+            if (count($pproxy)>1) {
138 138
                 $pport = $pproxy[1];
139 139
             } else {
140 140
                 $pport = 8080;
@@ -207,9 +207,9 @@  discard block
 block discarded – undo
207 207
             // fall thru intentionally
208 208
             case 'describe':
209 209
             case 'wrap':
210
-                $msg[0] = new $requestClass('system.methodHelp', array(), (int)$id);
210
+                $msg[0] = new $requestClass('system.methodHelp', array(), (int) $id);
211 211
                 $msg[0]->addparam(new PhpXmlRpc\Value($method));
212
-                $msg[1] = new $requestClass('system.methodSignature', array(), (int)$id + 1);
212
+                $msg[1] = new $requestClass('system.methodSignature', array(), (int) $id+1);
213 213
                 $msg[1]->addparam(new PhpXmlRpc\Value($method));
214 214
                 if ($wstype == 2) {
215 215
                     $msg[0]->setJsonRpcVersion('2.0');
@@ -218,10 +218,10 @@  discard block
 block discarded – undo
218 218
                     $msg[0]->setJsonRpcVersion('1.0');
219 219
                     $msg[1]->setJsonRpcVersion('1.0');
220 220
                 }
221
-                $actionname = 'Description of method "' . $method . '"';
221
+                $actionname = 'Description of method "'.$method.'"';
222 222
                 break;
223 223
             case 'list':
224
-                $msg[0] = new $requestClass('system.listMethods', array(), (int)$id);
224
+                $msg[0] = new $requestClass('system.listMethods', array(), (int) $id);
225 225
                 if ($wstype == 2) {
226 226
                     $msg[0]->setJsonRpcVersion('2.0');
227 227
                 } elseif ($wstype == 1 && $hasjsonrpc2) {
@@ -242,10 +242,10 @@  discard block
 block discarded – undo
242 242
                 // hack! build payload by hand
243 243
                 if ($wstype == 2) {
244 244
                     $payload = rtrim($payload, "\n");
245
-                    $payload = "{\n" .
246
-                        '"jsonrpc": "2.0"' . ",\n" .
247
-                        '"method": "' . $method . "\",\n\"params\": [\n" .
248
-                        $payload .
245
+                    $payload = "{\n".
246
+                        '"jsonrpc": "2.0"'.",\n".
247
+                        '"method": "'.$method."\",\n\"params\": [\n".
248
+                        $payload.
249 249
                         "\n]";
250 250
                     if ($action == "notification") {
251 251
                         $payload .= "\n";
@@ -261,9 +261,9 @@  discard block
 block discarded – undo
261 261
                     $msg[0]->setJsonRpcVersion('2.0');
262 262
                 } elseif ($wstype == 1) {
263 263
                     $payload = rtrim($payload, "\n");
264
-                    $payload = "{\n" .
265
-                        '"method": "' . $method . "\",\n\"params\": [\n" .
266
-                        $payload .
264
+                    $payload = "{\n".
265
+                        '"method": "'.$method."\",\n\"params\": [\n".
266
+                        $payload.
267 267
                         "\n],\n\"id\": ";
268 268
                     if ($action == "notification") {
269 269
                         $payload .= "null\n}";
@@ -281,26 +281,26 @@  discard block
 block discarded – undo
281 281
                     }
282 282
                 } else {
283 283
                     $msg[0]->setPayload(
284
-                        $msg[0]->xml_header($inputcharset) .
285
-                        '<methodName>' . $method . "</methodName>\n<params>" .
286
-                        $payload .
287
-                        "</params>\n" . $msg[0]->xml_footer()
284
+                        $msg[0]->xml_header($inputcharset).
285
+                        '<methodName>'.$method."</methodName>\n<params>".
286
+                        $payload.
287
+                        "</params>\n".$msg[0]->xml_footer()
288 288
                     );
289 289
                 }
290 290
                 if ($action == 'notification') {
291
-                    $actionname = 'Execution of notification ' . $method;
291
+                    $actionname = 'Execution of notification '.$method;
292 292
                 } else {
293
-                    $actionname = 'Execution of method ' . $method;
293
+                    $actionname = 'Execution of method '.$method;
294 294
                 }
295 295
                 break;
296 296
             default: // give a warning
297
-                $actionname = '[ERROR: unknown action] "' . $action . '"';
297
+                $actionname = '[ERROR: unknown action] "'.$action.'"';
298 298
         }
299 299
     }
300 300
 
301 301
     // Before calling execute, echo out brief description of action taken + date and time ???
302 302
     // this gives good user feedback for long-running methods...
303
-    echo '<h2>' . htmlspecialchars($actionname, ENT_COMPAT, $inputcharset) . ' on server ' . htmlspecialchars($server, ENT_COMPAT, $inputcharset) . " ...</h2>\n";
303
+    echo '<h2>'.htmlspecialchars($actionname, ENT_COMPAT, $inputcharset).' on server '.htmlspecialchars($server, ENT_COMPAT, $inputcharset)." ...</h2>\n";
304 304
     flush();
305 305
 
306 306
     $response = null;
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
             break;
319 319
         }
320 320
     }
321
-    $time = microtime(true) - $time;
321
+    $time = microtime(true)-$time;
322 322
     if ($debug) {
323 323
         echo "</div>\n";
324 324
     }
@@ -332,8 +332,8 @@  discard block
 block discarded – undo
332 332
             // call failed! echo out error msg!
333 333
             //echo '<h2>'.htmlspecialchars($actionname, ENT_COMPAT, $inputcharset).' on server '.htmlspecialchars($server, ENT_COMPAT, $inputcharset).'</h2>';
334 334
             echo "<h3>$protoName call FAILED!</h3>\n";
335
-            echo "<p>Fault code: [" . htmlspecialchars($response->faultCode(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) .
336
-                "] Reason: '" . htmlspecialchars($response->faultString(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) . "'</p>\n";
335
+            echo "<p>Fault code: [".htmlspecialchars($response->faultCode(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding).
336
+                "] Reason: '".htmlspecialchars($response->faultString(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding)."'</p>\n";
337 337
             echo(date("d/M/Y:H:i:s\n"));
338 338
         } else {
339 339
             // call succeeded: parse results
@@ -349,36 +349,36 @@  discard block
 block discarded – undo
349 349
                         $max = $v->count();
350 350
                         echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n";
351 351
                         echo "<thead>\n<tr><th>Method ($max)</th><th>Description</th></tr>\n</thead>\n<tbody>\n";
352
-                        foreach($v as $i => $rec) {
352
+                        foreach ($v as $i => $rec) {
353 353
                             if ($i % 2) {
354 354
                                 $class = ' class="oddrow"';
355 355
                             } else {
356 356
                                 $class = ' class="evenrow"';
357 357
                             }
358
-                            echo("<tr><td$class>" . htmlspecialchars($rec->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) . "</td><td$class><form action=\"controller.php\" method=\"get\" target=\"frmcontroller\">" .
359
-                                "<input type=\"hidden\" name=\"host\" value=\"" . htmlspecialchars($host, ENT_COMPAT, $inputcharset) . "\" />" .
360
-                                "<input type=\"hidden\" name=\"port\" value=\"" . htmlspecialchars($port, ENT_COMPAT, $inputcharset) . "\" />" .
361
-                                "<input type=\"hidden\" name=\"path\" value=\"" . htmlspecialchars($path, ENT_COMPAT, $inputcharset) . "\" />" .
362
-                                "<input type=\"hidden\" name=\"id\" value=\"" . htmlspecialchars($id, ENT_COMPAT, $inputcharset) . "\" />" .
363
-                                "<input type=\"hidden\" name=\"debug\" value=\"$debug\" />" .
364
-                                "<input type=\"hidden\" name=\"username\" value=\"" . htmlspecialchars($username, ENT_COMPAT, $inputcharset) . "\" />" .
365
-                                "<input type=\"hidden\" name=\"password\" value=\"" . htmlspecialchars($password, ENT_COMPAT, $inputcharset) . "\" />" .
366
-                                "<input type=\"hidden\" name=\"authtype\" value=\"$authtype\" />" .
367
-                                "<input type=\"hidden\" name=\"verifyhost\" value=\"$verifyhost\" />" .
368
-                                "<input type=\"hidden\" name=\"verifypeer\" value=\"$verifypeer\" />" .
369
-                                "<input type=\"hidden\" name=\"cainfo\" value=\"" . htmlspecialchars($cainfo, ENT_COMPAT, $inputcharset) . "\" />" .
370
-                                "<input type=\"hidden\" name=\"proxy\" value=\"" . htmlspecialchars($proxy, ENT_COMPAT, $inputcharset) . "\" />" .
371
-                                "<input type=\"hidden\" name=\"proxyuser\" value=\"" . htmlspecialchars($proxyuser, ENT_COMPAT, $inputcharset) . "\" />" .
372
-                                "<input type=\"hidden\" name=\"proxypwd\" value=\"" . htmlspecialchars($proxypwd, ENT_COMPAT, $inputcharset) . "\" />" .
373
-                                "<input type=\"hidden\" name=\"responsecompression\" value=\"$responsecompression\" />" .
374
-                                "<input type=\"hidden\" name=\"requestcompression\" value=\"$requestcompression\" />" .
375
-                                "<input type=\"hidden\" name=\"clientcookies\" value=\"" . htmlspecialchars($clientcookies, ENT_COMPAT, $inputcharset) . "\" />" .
376
-                                "<input type=\"hidden\" name=\"protocol\" value=\"$protocol\" />" .
377
-                                "<input type=\"hidden\" name=\"timeout\" value=\"" . htmlspecialchars($timeout, ENT_COMPAT, $inputcharset) . "\" />" .
378
-                                "<input type=\"hidden\" name=\"method\" value=\"" . htmlspecialchars($rec->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) . "\" />" .
379
-                                "<input type=\"hidden\" name=\"wstype\" value=\"$wstype\" />" .
380
-                                "<input type=\"hidden\" name=\"action\" value=\"describe\" />" .
381
-                                "<input type=\"hidden\" name=\"run\" value=\"now\" />" .
358
+                            echo("<tr><td$class>".htmlspecialchars($rec->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding)."</td><td$class><form action=\"controller.php\" method=\"get\" target=\"frmcontroller\">".
359
+                                "<input type=\"hidden\" name=\"host\" value=\"".htmlspecialchars($host, ENT_COMPAT, $inputcharset)."\" />".
360
+                                "<input type=\"hidden\" name=\"port\" value=\"".htmlspecialchars($port, ENT_COMPAT, $inputcharset)."\" />".
361
+                                "<input type=\"hidden\" name=\"path\" value=\"".htmlspecialchars($path, ENT_COMPAT, $inputcharset)."\" />".
362
+                                "<input type=\"hidden\" name=\"id\" value=\"".htmlspecialchars($id, ENT_COMPAT, $inputcharset)."\" />".
363
+                                "<input type=\"hidden\" name=\"debug\" value=\"$debug\" />".
364
+                                "<input type=\"hidden\" name=\"username\" value=\"".htmlspecialchars($username, ENT_COMPAT, $inputcharset)."\" />".
365
+                                "<input type=\"hidden\" name=\"password\" value=\"".htmlspecialchars($password, ENT_COMPAT, $inputcharset)."\" />".
366
+                                "<input type=\"hidden\" name=\"authtype\" value=\"$authtype\" />".
367
+                                "<input type=\"hidden\" name=\"verifyhost\" value=\"$verifyhost\" />".
368
+                                "<input type=\"hidden\" name=\"verifypeer\" value=\"$verifypeer\" />".
369
+                                "<input type=\"hidden\" name=\"cainfo\" value=\"".htmlspecialchars($cainfo, ENT_COMPAT, $inputcharset)."\" />".
370
+                                "<input type=\"hidden\" name=\"proxy\" value=\"".htmlspecialchars($proxy, ENT_COMPAT, $inputcharset)."\" />".
371
+                                "<input type=\"hidden\" name=\"proxyuser\" value=\"".htmlspecialchars($proxyuser, ENT_COMPAT, $inputcharset)."\" />".
372
+                                "<input type=\"hidden\" name=\"proxypwd\" value=\"".htmlspecialchars($proxypwd, ENT_COMPAT, $inputcharset)."\" />".
373
+                                "<input type=\"hidden\" name=\"responsecompression\" value=\"$responsecompression\" />".
374
+                                "<input type=\"hidden\" name=\"requestcompression\" value=\"$requestcompression\" />".
375
+                                "<input type=\"hidden\" name=\"clientcookies\" value=\"".htmlspecialchars($clientcookies, ENT_COMPAT, $inputcharset)."\" />".
376
+                                "<input type=\"hidden\" name=\"protocol\" value=\"$protocol\" />".
377
+                                "<input type=\"hidden\" name=\"timeout\" value=\"".htmlspecialchars($timeout, ENT_COMPAT, $inputcharset)."\" />".
378
+                                "<input type=\"hidden\" name=\"method\" value=\"".htmlspecialchars($rec->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding)."\" />".
379
+                                "<input type=\"hidden\" name=\"wstype\" value=\"$wstype\" />".
380
+                                "<input type=\"hidden\" name=\"action\" value=\"describe\" />".
381
+                                "<input type=\"hidden\" name=\"run\" value=\"now\" />".
382 382
                                 "<input type=\"submit\" value=\"Describe\" /></form></td>");
383 383
                             //echo("</tr>\n");
384 384
 
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
                     $r2 = $resp[1]->value();
406 406
 
407 407
                     echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n";
408
-                    echo "<thead>\n<tr><th>Method</th><th>" . htmlspecialchars($method, ENT_COMPAT, $inputcharset) . "</th><th>&nbsp;</th><th>&nbsp;</th></tr>\n</thead>\n<tbody>\n";
408
+                    echo "<thead>\n<tr><th>Method</th><th>".htmlspecialchars($method, ENT_COMPAT, $inputcharset)."</th><th>&nbsp;</th><th>&nbsp;</th></tr>\n</thead>\n<tbody>\n";
409 409
                     $desc = htmlspecialchars($r1->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding);
410 410
                     if ($desc == "") {
411 411
                         $desc = "-";
@@ -415,24 +415,24 @@  discard block
 block discarded – undo
415 415
                     if ($r2->kindOf() != "array") {
416 416
                         echo "<tr><td class=\"oddrow\">Signature</td><td class=\"oddrow\">Unknown</td><td class=\"oddrow\">&nbsp;</td></tr>\n";
417 417
                     } else {
418
-                        foreach($r2 as $i => $x) {
418
+                        foreach ($r2 as $i => $x) {
419 419
                             $payload = "";
420 420
                             $alt_payload = "";
421
-                            if ($i + 1 % 2) {
421
+                            if ($i+1 % 2) {
422 422
                                 $class = ' class="oddrow"';
423 423
                             } else {
424 424
                                 $class = ' class="evenrow"';
425 425
                             }
426
-                            echo "<tr><td$class>Signature&nbsp;" . ($i + 1) . "</td><td$class>";
426
+                            echo "<tr><td$class>Signature&nbsp;".($i+1)."</td><td$class>";
427 427
                             if ($x->kindOf() == "array") {
428 428
                                 $ret = $x[0];
429
-                                echo "<code>OUT:&nbsp;" . htmlspecialchars($ret->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) . "<br />IN: (";
430
-                                if ($x->count() > 1) {
431
-                                    foreach($x as $k => $y) {
429
+                                echo "<code>OUT:&nbsp;".htmlspecialchars($ret->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding)."<br />IN: (";
430
+                                if ($x->count()>1) {
431
+                                    foreach ($x as $k => $y) {
432 432
                                         if ($k == 0) continue;
433 433
                                         echo htmlspecialchars($y->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding);
434 434
                                         if ($wstype == 1 || $wstype == 2) {
435
-                                            switch($y->scalarval()) {
435
+                                            switch ($y->scalarval()) {
436 436
                                                 case 'string':
437 437
                                                 case 'dateTime.iso8601':
438 438
                                                 case 'base64':
@@ -465,22 +465,22 @@  discard block
 block discarded – undo
465 465
                                         } else {
466 466
                                             $type = $y->scalarval();
467 467
                                             $payload .= '<param><value>';
468
-                                            switch($type) {
468
+                                            switch ($type) {
469 469
                                                 case 'undefined':
470 470
                                                     break;
471 471
                                                 case 'null':
472 472
                                                     $type = 'nil';
473 473
                                                     // fall thru intentionally
474 474
                                                 default:
475
-                                                    $payload .= '<' .
476
-                                                        htmlspecialchars($type, ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) .
477
-                                                        '></' . htmlspecialchars($type, ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) .
475
+                                                    $payload .= '<'.
476
+                                                        htmlspecialchars($type, ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding).
477
+                                                        '></'.htmlspecialchars($type, ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding).
478 478
                                                         '>';
479 479
                                             }
480 480
                                             $payload .= "</value></param>\n";
481 481
                                         }
482 482
                                         $alt_payload .= $y->scalarval();
483
-                                        if ($k < $x->count() - 1) {
483
+                                        if ($k<$x->count()-1) {
484 484
                                             $alt_payload .= ';';
485 485
                                             if ($wstype == 1 || $wstype == 2) {
486 486
                                                 $payload .= ', ';
@@ -496,63 +496,63 @@  discard block
 block discarded – undo
496 496
                             echo '</td>';
497 497
                             // button to test this method
498 498
                             //$payload="<methodCall>\n<methodName>$method</methodName>\n<params>\n$payload</params>\n</methodCall>";
499
-                            echo "<td$class><form action=\"controller.php\" target=\"frmcontroller\" method=\"get\">" .
500
-                                "<input type=\"hidden\" name=\"host\" value=\"" . htmlspecialchars($host, ENT_COMPAT, $inputcharset) . "\" />" .
501
-                                "<input type=\"hidden\" name=\"port\" value=\"" . htmlspecialchars($port, ENT_COMPAT, $inputcharset) . "\" />" .
502
-                                "<input type=\"hidden\" name=\"path\" value=\"" . htmlspecialchars($path, ENT_COMPAT, $inputcharset) . "\" />" .
503
-                                "<input type=\"hidden\" name=\"id\" value=\"" . htmlspecialchars($id, ENT_COMPAT, $inputcharset) . "\" />" .
504
-                                "<input type=\"hidden\" name=\"debug\" value=\"$debug\" />" .
505
-                                "<input type=\"hidden\" name=\"username\" value=\"" . htmlspecialchars($username, ENT_COMPAT, $inputcharset) . "\" />" .
506
-                                "<input type=\"hidden\" name=\"password\" value=\"" . htmlspecialchars($password, ENT_COMPAT, $inputcharset) . "\" />" .
507
-                                "<input type=\"hidden\" name=\"authtype\" value=\"$authtype\" />" .
508
-                                "<input type=\"hidden\" name=\"verifyhost\" value=\"$verifyhost\" />" .
509
-                                "<input type=\"hidden\" name=\"verifypeer\" value=\"$verifypeer\" />" .
510
-                                "<input type=\"hidden\" name=\"cainfo\" value=\"" . htmlspecialchars($cainfo, ENT_COMPAT, $inputcharset) . "\" />" .
511
-                                "<input type=\"hidden\" name=\"proxy\" value=\"" . htmlspecialchars($proxy, ENT_COMPAT, $inputcharset) . "\" />" .
512
-                                "<input type=\"hidden\" name=\"proxyuser\" value=\"" . htmlspecialchars($proxyuser, ENT_COMPAT, $inputcharset) . "\" />" .
513
-                                "<input type=\"hidden\" name=\"proxypwd\" value=\"" . htmlspecialchars($proxypwd, ENT_COMPAT, $inputcharset) . "\" />" .
514
-                                "<input type=\"hidden\" name=\"responsecompression\" value=\"$responsecompression\" />" .
515
-                                "<input type=\"hidden\" name=\"requestcompression\" value=\"$requestcompression\" />" .
516
-                                "<input type=\"hidden\" name=\"clientcookies\" value=\"" . htmlspecialchars($clientcookies, ENT_COMPAT, $inputcharset) . "\" />" .
517
-                                "<input type=\"hidden\" name=\"protocol\" value=\"$protocol\" />" .
518
-                                "<input type=\"hidden\" name=\"timeout\" value=\"" . htmlspecialchars($timeout, ENT_COMPAT, $inputcharset) . "\" />" .
519
-                                "<input type=\"hidden\" name=\"method\" value=\"" . htmlspecialchars($method, ENT_COMPAT, $inputcharset) . "\" />" .
520
-                                "<input type=\"hidden\" name=\"methodpayload\" value=\"" . htmlspecialchars($payload, ENT_COMPAT, $inputcharset) . "\" />" .
521
-                                "<input type=\"hidden\" name=\"altmethodpayload\" value=\"" . htmlspecialchars($alt_payload, ENT_COMPAT, $inputcharset) . "\" />" .
522
-                                "<input type=\"hidden\" name=\"wstype\" value=\"$wstype\" />" .
499
+                            echo "<td$class><form action=\"controller.php\" target=\"frmcontroller\" method=\"get\">".
500
+                                "<input type=\"hidden\" name=\"host\" value=\"".htmlspecialchars($host, ENT_COMPAT, $inputcharset)."\" />".
501
+                                "<input type=\"hidden\" name=\"port\" value=\"".htmlspecialchars($port, ENT_COMPAT, $inputcharset)."\" />".
502
+                                "<input type=\"hidden\" name=\"path\" value=\"".htmlspecialchars($path, ENT_COMPAT, $inputcharset)."\" />".
503
+                                "<input type=\"hidden\" name=\"id\" value=\"".htmlspecialchars($id, ENT_COMPAT, $inputcharset)."\" />".
504
+                                "<input type=\"hidden\" name=\"debug\" value=\"$debug\" />".
505
+                                "<input type=\"hidden\" name=\"username\" value=\"".htmlspecialchars($username, ENT_COMPAT, $inputcharset)."\" />".
506
+                                "<input type=\"hidden\" name=\"password\" value=\"".htmlspecialchars($password, ENT_COMPAT, $inputcharset)."\" />".
507
+                                "<input type=\"hidden\" name=\"authtype\" value=\"$authtype\" />".
508
+                                "<input type=\"hidden\" name=\"verifyhost\" value=\"$verifyhost\" />".
509
+                                "<input type=\"hidden\" name=\"verifypeer\" value=\"$verifypeer\" />".
510
+                                "<input type=\"hidden\" name=\"cainfo\" value=\"".htmlspecialchars($cainfo, ENT_COMPAT, $inputcharset)."\" />".
511
+                                "<input type=\"hidden\" name=\"proxy\" value=\"".htmlspecialchars($proxy, ENT_COMPAT, $inputcharset)."\" />".
512
+                                "<input type=\"hidden\" name=\"proxyuser\" value=\"".htmlspecialchars($proxyuser, ENT_COMPAT, $inputcharset)."\" />".
513
+                                "<input type=\"hidden\" name=\"proxypwd\" value=\"".htmlspecialchars($proxypwd, ENT_COMPAT, $inputcharset)."\" />".
514
+                                "<input type=\"hidden\" name=\"responsecompression\" value=\"$responsecompression\" />".
515
+                                "<input type=\"hidden\" name=\"requestcompression\" value=\"$requestcompression\" />".
516
+                                "<input type=\"hidden\" name=\"clientcookies\" value=\"".htmlspecialchars($clientcookies, ENT_COMPAT, $inputcharset)."\" />".
517
+                                "<input type=\"hidden\" name=\"protocol\" value=\"$protocol\" />".
518
+                                "<input type=\"hidden\" name=\"timeout\" value=\"".htmlspecialchars($timeout, ENT_COMPAT, $inputcharset)."\" />".
519
+                                "<input type=\"hidden\" name=\"method\" value=\"".htmlspecialchars($method, ENT_COMPAT, $inputcharset)."\" />".
520
+                                "<input type=\"hidden\" name=\"methodpayload\" value=\"".htmlspecialchars($payload, ENT_COMPAT, $inputcharset)."\" />".
521
+                                "<input type=\"hidden\" name=\"altmethodpayload\" value=\"".htmlspecialchars($alt_payload, ENT_COMPAT, $inputcharset)."\" />".
522
+                                "<input type=\"hidden\" name=\"wstype\" value=\"$wstype\" />".
523 523
                                 "<input type=\"hidden\" name=\"action\" value=\"execute\" />";
524 524
                             //if ($wstype != 1) {
525 525
                                 echo "<input type=\"submit\" value=\"Load method synopsis\" />";
526 526
                             //}
527 527
                             echo "</form></td>\n";
528 528
 
529
-                            echo "<td$class><form action=\"controller.php\" target=\"frmcontroller\" method=\"get\">" .
530
-                                "<input type=\"hidden\" name=\"host\" value=\"" . htmlspecialchars($host, ENT_COMPAT, $inputcharset) . "\" />" .
531
-                                "<input type=\"hidden\" name=\"port\" value=\"" . htmlspecialchars($port, ENT_COMPAT, $inputcharset) . "\" />" .
532
-                                "<input type=\"hidden\" name=\"path\" value=\"" . htmlspecialchars($path, ENT_COMPAT, $inputcharset) . "\" />" .
533
-                                "<input type=\"hidden\" name=\"id\" value=\"" . htmlspecialchars($id, ENT_COMPAT, $inputcharset) . "\" />" .
534
-                                "<input type=\"hidden\" name=\"debug\" value=\"$debug\" />" .
535
-                                "<input type=\"hidden\" name=\"username\" value=\"" . htmlspecialchars($username, ENT_COMPAT, $inputcharset) . "\" />" .
536
-                                "<input type=\"hidden\" name=\"password\" value=\"" . htmlspecialchars($password, ENT_COMPAT, $inputcharset) . "\" />" .
537
-                                "<input type=\"hidden\" name=\"authtype\" value=\"$authtype\" />" .
538
-                                "<input type=\"hidden\" name=\"verifyhost\" value=\"$verifyhost\" />" .
539
-                                "<input type=\"hidden\" name=\"verifypeer\" value=\"$verifypeer\" />" .
540
-                                "<input type=\"hidden\" name=\"cainfo\" value=\"" . htmlspecialchars($cainfo, ENT_COMPAT, $inputcharset) . "\" />" .
541
-                                "<input type=\"hidden\" name=\"proxy\" value=\"" . htmlspecialchars($proxy, ENT_COMPAT, $inputcharset) . "\" />" .
542
-                                "<input type=\"hidden\" name=\"proxyuser\" value=\"" . htmlspecialchars($proxyuser, ENT_COMPAT, $inputcharset) . "\" />" .
543
-                                "<input type=\"hidden\" name=\"proxypwd\" value=\"" . htmlspecialchars($proxypwd, ENT_COMPAT, $inputcharset) . "\" />" .
544
-                                "<input type=\"hidden\" name=\"responsecompression\" value=\"$responsecompression\" />" .
545
-                                "<input type=\"hidden\" name=\"requestcompression\" value=\"$requestcompression\" />" .
546
-                                "<input type=\"hidden\" name=\"clientcookies\" value=\"" . htmlspecialchars($clientcookies, ENT_COMPAT, $inputcharset) . "\" />" .
547
-                                "<input type=\"hidden\" name=\"protocol\" value=\"$protocol\" />" .
548
-                                "<input type=\"hidden\" name=\"timeout\" value=\"" . htmlspecialchars($timeout, ENT_COMPAT, $inputcharset) . "\" />" .
549
-                                "<input type=\"hidden\" name=\"method\" value=\"" . htmlspecialchars($method, ENT_COMPAT, $inputcharset) . "\" />" .
550
-                                "<input type=\"hidden\" name=\"methodsig\" value=\"" . $i . "\" />" .
551
-                                "<input type=\"hidden\" name=\"methodpayload\" value=\"" . htmlspecialchars($payload, ENT_COMPAT, $inputcharset) . "\" />" .
552
-                                "<input type=\"hidden\" name=\"altmethodpayload\" value=\"" . htmlspecialchars($alt_payload, ENT_COMPAT, $inputcharset) . "\" />" .
553
-                                "<input type=\"hidden\" name=\"wstype\" value=\"$wstype\" />" .
554
-                                "<input type=\"hidden\" name=\"action\" value=\"wrap\" />" .
555
-                                "<input type=\"hidden\" name=\"run\" value=\"now\" />" .
529
+                            echo "<td$class><form action=\"controller.php\" target=\"frmcontroller\" method=\"get\">".
530
+                                "<input type=\"hidden\" name=\"host\" value=\"".htmlspecialchars($host, ENT_COMPAT, $inputcharset)."\" />".
531
+                                "<input type=\"hidden\" name=\"port\" value=\"".htmlspecialchars($port, ENT_COMPAT, $inputcharset)."\" />".
532
+                                "<input type=\"hidden\" name=\"path\" value=\"".htmlspecialchars($path, ENT_COMPAT, $inputcharset)."\" />".
533
+                                "<input type=\"hidden\" name=\"id\" value=\"".htmlspecialchars($id, ENT_COMPAT, $inputcharset)."\" />".
534
+                                "<input type=\"hidden\" name=\"debug\" value=\"$debug\" />".
535
+                                "<input type=\"hidden\" name=\"username\" value=\"".htmlspecialchars($username, ENT_COMPAT, $inputcharset)."\" />".
536
+                                "<input type=\"hidden\" name=\"password\" value=\"".htmlspecialchars($password, ENT_COMPAT, $inputcharset)."\" />".
537
+                                "<input type=\"hidden\" name=\"authtype\" value=\"$authtype\" />".
538
+                                "<input type=\"hidden\" name=\"verifyhost\" value=\"$verifyhost\" />".
539
+                                "<input type=\"hidden\" name=\"verifypeer\" value=\"$verifypeer\" />".
540
+                                "<input type=\"hidden\" name=\"cainfo\" value=\"".htmlspecialchars($cainfo, ENT_COMPAT, $inputcharset)."\" />".
541
+                                "<input type=\"hidden\" name=\"proxy\" value=\"".htmlspecialchars($proxy, ENT_COMPAT, $inputcharset)."\" />".
542
+                                "<input type=\"hidden\" name=\"proxyuser\" value=\"".htmlspecialchars($proxyuser, ENT_COMPAT, $inputcharset)."\" />".
543
+                                "<input type=\"hidden\" name=\"proxypwd\" value=\"".htmlspecialchars($proxypwd, ENT_COMPAT, $inputcharset)."\" />".
544
+                                "<input type=\"hidden\" name=\"responsecompression\" value=\"$responsecompression\" />".
545
+                                "<input type=\"hidden\" name=\"requestcompression\" value=\"$requestcompression\" />".
546
+                                "<input type=\"hidden\" name=\"clientcookies\" value=\"".htmlspecialchars($clientcookies, ENT_COMPAT, $inputcharset)."\" />".
547
+                                "<input type=\"hidden\" name=\"protocol\" value=\"$protocol\" />".
548
+                                "<input type=\"hidden\" name=\"timeout\" value=\"".htmlspecialchars($timeout, ENT_COMPAT, $inputcharset)."\" />".
549
+                                "<input type=\"hidden\" name=\"method\" value=\"".htmlspecialchars($method, ENT_COMPAT, $inputcharset)."\" />".
550
+                                "<input type=\"hidden\" name=\"methodsig\" value=\"".$i."\" />".
551
+                                "<input type=\"hidden\" name=\"methodpayload\" value=\"".htmlspecialchars($payload, ENT_COMPAT, $inputcharset)."\" />".
552
+                                "<input type=\"hidden\" name=\"altmethodpayload\" value=\"".htmlspecialchars($alt_payload, ENT_COMPAT, $inputcharset)."\" />".
553
+                                "<input type=\"hidden\" name=\"wstype\" value=\"$wstype\" />".
554
+                                "<input type=\"hidden\" name=\"action\" value=\"wrap\" />".
555
+                                "<input type=\"hidden\" name=\"run\" value=\"now\" />".
556 556
                                 "<input type=\"submit\" value=\"Generate method call stub code\" />";
557 557
                             echo "</form></td></tr>\n";
558 558
                         }
@@ -564,14 +564,14 @@  discard block
 block discarded – undo
564 564
                 case 'wrap':
565 565
                     $r1 = $resp[0]->value();
566 566
                     $r2 = $resp[1]->value();
567
-                    if ($r2->kindOf() != "array" || $r2->count() <= $methodsig) {
567
+                    if ($r2->kindOf() != "array" || $r2->count()<=$methodsig) {
568 568
                         echo "Error: signature unknown\n";
569 569
                     } else {
570 570
                         $mdesc = $r1->scalarval();
571 571
                         $encoder = new PhpXmlRpc\Encoder();
572 572
                         $msig = $encoder->decode($r2);
573 573
                         $msig = $msig[$methodsig];
574
-                        $proto = ($protocol == 1) ? 'http11' : ( $protocol == 2 ? 'https' : ( $protocol == 3 ? 'h2' : ( $protocol == 4 ? 'h2c' : '' ) ) );
574
+                        $proto = ($protocol == 1) ? 'http11' : ($protocol == 2 ? 'https' : ($protocol == 3 ? 'h2' : ($protocol == 4 ? 'h2c' : '')));
575 575
                         if ($proxy == '' && $username == '' && !$requestcompression && !$responsecompression &&
576 576
                             $clientcookies == '') {
577 577
                             $opts = 1; // simple client copy in stub code
@@ -592,12 +592,12 @@  discard block
 block discarded – undo
592 592
                             $client,
593 593
                             $method,
594 594
                             array('timeout' => $timeout, 'protocol' => $proto, 'simple_client_copy' => $opts, 'prefix' => $prefix, 'throw_on_fault' => true),
595
-                            str_replace('.', '_', $prefix . '_' . $method), $msig, $mdesc
595
+                            str_replace('.', '_', $prefix.'_'.$method), $msig, $mdesc
596 596
                         );
597 597
                         //if ($code)
598 598
                         //{
599 599
                         echo "<div id=\"phpcode\">\n";
600
-                        highlight_string("<?php\n" . $code['docstring'] . $code['source']);
600
+                        highlight_string("<?php\n".$code['docstring'].$code['source']);
601 601
                         echo "\n</div>";
602 602
                         //}
603 603
                         //else
@@ -608,11 +608,11 @@  discard block
 block discarded – undo
608 608
                     break;
609 609
 
610 610
                 case 'execute':
611
-                    echo '<div id="response"><h2>Response:</h2>' . htmlspecialchars($response->serialize()) . '</div>';
611
+                    echo '<div id="response"><h2>Response:</h2>'.htmlspecialchars($response->serialize()).'</div>';
612 612
                     break;
613 613
 
614 614
                 case 'notification':
615
-                    echo '<div id="response"><h2>Response:</h2>' . htmlspecialchars($response->serialize()) . '</div>';
615
+                    echo '<div id="response"><h2>Response:</h2>'.htmlspecialchars($response->serialize()).'</div>';
616 616
                     break;
617 617
 
618 618
                 default: // give a warning
Please login to merge, or discard this patch.
debugger/controller.php 2 patches
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     $method, $methodsig, $payload, $alt_payload, $username, $password, $authtype, $verifyhost, $verifypeer, $cainfo, $proxy,
22 22
     $proxyuser, $proxypwd, $timeout, $requestcompression, $responsecompression, $clientcookies;
23 23
 
24
-include __DIR__ . '/common.php';
24
+include __DIR__.'/common.php';
25 25
 
26 26
 if ($action == '') {
27 27
     $action = 'list';
@@ -38,30 +38,30 @@  discard block
 block discarded – undo
38 38
     /// @const JSXMLRPC_PATH Path to the visual xml-rpc editing dialog's containing folder. Can be absolute, or
39 39
     ///         relative to this debugger's folder.
40 40
     if (defined('JSXMLRPC_PATH')) {
41
-        $editorpaths = array(JSXMLRPC_PATH[0] === '/' ? JSXMLRPC_PATH : (__DIR__ . '/' . JSXMLRPC_PATH));
41
+        $editorpaths = array(JSXMLRPC_PATH[0] === '/' ? JSXMLRPC_PATH : (__DIR__.'/'.JSXMLRPC_PATH));
42 42
     } else {
43 43
         $editorpaths = array(
44
-            __DIR__ . '/jsxmlrpc/debugger/', // this package is top-level, jsxmlrpc installed via taskfile
45
-            __DIR__ . '/vendor/phpxmlrpc/jsxmlrpc/debugger/', // this package is top-level, jsxmlrpc installed via composer inside the debugger
46
-            __DIR__ . '/node_modules/@jsxmlrpc/jsxmlrpc/debugger/', // this package is top-level, jsxmlrpc installed via npm inside the debugger
47
-            __DIR__ . '/../vendor/phpxmlrpc/jsxmlrpc/debugger/', // this package is top-level, jsxmlrpc installed via composer
48
-            __DIR__ . '/../node_modules/@jsxmlrpc/jsxmlrpc/debugger/', // this package is top-level, jsxmlrpc installed via npm
49
-            __DIR__ . '/../../jsxmlrpc/debugger/', // this package is a composer dependency, jsxmlrpc too
50
-            __DIR__ . '/../../../../debugger/jsxmlrpc/debugger/', // this package is a composer dependency, jsxmlrpc installed in the top-level via taskfile (ie. jsonrpc)
51
-            __DIR__ . '/../../../../debugger/vendor/phpxmlrpc/jsxmlrpc/debugger/', // this package is a composer dependency, jsxmlrpc installed in the top-level debugger via composer
52
-            __DIR__ . '/../../../../debugger/node_modules/@jsxmlrpc/jsxmlrpc/debugger/', // this package is a composer dependency, jsxmlrpc installed in the top-level debugger via npm
53
-            __DIR__ . '/../../../../node_modules/@jsxmlrpc/jsxmlrpc/debugger/', // this package is a composer dependency, jsxmlrpc installed via npm in the top-level project
44
+            __DIR__.'/jsxmlrpc/debugger/', // this package is top-level, jsxmlrpc installed via taskfile
45
+            __DIR__.'/vendor/phpxmlrpc/jsxmlrpc/debugger/', // this package is top-level, jsxmlrpc installed via composer inside the debugger
46
+            __DIR__.'/node_modules/@jsxmlrpc/jsxmlrpc/debugger/', // this package is top-level, jsxmlrpc installed via npm inside the debugger
47
+            __DIR__.'/../vendor/phpxmlrpc/jsxmlrpc/debugger/', // this package is top-level, jsxmlrpc installed via composer
48
+            __DIR__.'/../node_modules/@jsxmlrpc/jsxmlrpc/debugger/', // this package is top-level, jsxmlrpc installed via npm
49
+            __DIR__.'/../../jsxmlrpc/debugger/', // this package is a composer dependency, jsxmlrpc too
50
+            __DIR__.'/../../../../debugger/jsxmlrpc/debugger/', // this package is a composer dependency, jsxmlrpc installed in the top-level via taskfile (ie. jsonrpc)
51
+            __DIR__.'/../../../../debugger/vendor/phpxmlrpc/jsxmlrpc/debugger/', // this package is a composer dependency, jsxmlrpc installed in the top-level debugger via composer
52
+            __DIR__.'/../../../../debugger/node_modules/@jsxmlrpc/jsxmlrpc/debugger/', // this package is a composer dependency, jsxmlrpc installed in the top-level debugger via npm
53
+            __DIR__.'/../../../../node_modules/@jsxmlrpc/jsxmlrpc/debugger/', // this package is a composer dependency, jsxmlrpc installed via npm in the top-level project
54 54
         );
55 55
     }
56
-    foreach($editorpaths as $editorpath) {
57
-        if (is_file(realpath($editorpath . 'visualeditor.html'))) {
56
+    foreach ($editorpaths as $editorpath) {
57
+        if (is_file(realpath($editorpath.'visualeditor.html'))) {
58 58
             $haseditor = true;
59 59
             break;
60 60
         }
61 61
     }
62 62
     if ($haseditor) {
63
-        $controllerRootUrl = str_replace('/controller.php', '', parse_url($_SERVER['REQUEST_URI'],  PHP_URL_PATH));
64
-        $editorurlpath = $controllerRootUrl . '/' . preg_replace('|^' . preg_quote(__DIR__, '|') .'|', '', $editorpath);
63
+        $controllerRootUrl = str_replace('/controller.php', '', parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH));
64
+        $editorurlpath = $controllerRootUrl.'/'.preg_replace('|^'.preg_quote(__DIR__, '|').'|', '', $editorpath);
65 65
         /// @todo for cases above 4 and up, look at $controllerRootUrl and check if the web root is not pointing directly
66 66
         ///       at this folder, as in that case the link to the visualeditor will not
67 67
         ///       work, as it will be in the form http(s)://domain/../../jsxmlrpc/debugger/visualeditor.html
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
         }
276 276
 
277 277
         function activateeditor() {
278
-            var url = '<?php echo $editorurlpath; ?>visualeditor.html?params=<?php echo str_replace(array("\\", "'"), array( "\\\\", "\\'"), $alt_payload); ?>';
278
+            var url = '<?php echo $editorurlpath; ?>visualeditor.html?params=<?php echo str_replace(array("\\", "'"), array("\\\\", "\\'"), $alt_payload); ?>';
279 279
             if (document.frmaction.wstype.value == "1" || document.frmaction.wstype.value == "2")
280 280
                 url += '&type=jsonrpc';
281 281
             var wnd = window.open(url, '_blank', 'width=750, height=400, location=0, resizable=1, menubar=0, scrollbars=1');
@@ -313,16 +313,16 @@  discard block
 block discarded – undo
313 313
     } ?>">
314 314
 <h1>XML-RPC
315 315
 <?php if ($hasjsonrpcclient) {
316
-    echo '<form name="frmxmlrpc" style="display: inline;" action="."><input name="yes" type="radio" onclick="switchtransport(0);"' .
316
+    echo '<form name="frmxmlrpc" style="display: inline;" action="."><input name="yes" type="radio" onclick="switchtransport(0);"'.
317 317
         // q: does this check make sense at all?
318
-        (!class_exists('\PhpXmlRpc\Client') ? ' disabled="disabled"' : '') . ' /></form>';
318
+        (!class_exists('\PhpXmlRpc\Client') ? ' disabled="disabled"' : '').' /></form>';
319 319
     if ($hasjsonrpc2) {
320 320
         echo ' / <form name="frmjsonrpc2" style="display: inline;" action="."><input name="yes" type="radio" onclick="switchtransport(2);"/></form>JSON-RPC 2.0 ';
321 321
     }
322 322
     echo ' / <form name="frmjsonrpc1" style="display: inline;" action="."><input name="yes" type="radio" onclick="switchtransport(1);"/></form>JSON-RPC 1.0 ';
323 323
 } ?>
324 324
 Debugger</h1><h3>(based on <a href="https://gggeek.github.io/phpxmlrpc/">PHPXMLRPC</a>, ver. <?php echo htmlspecialchars(\PhpXmlRpc\PhpXmlRpc::$xmlrpcVersion)?>
325
-<?php if (class_exists('\PhpXmlRpc\JsonRpc\PhpJsonRpc')) echo ' and <a href="https://gggeek.github.io/phpxmlrpc-jsonrpc/">PHPJOSNRPC</a>, ver. ' . htmlspecialchars(\PhpXmlRpc\JsonRpc\PhpJsonRpc::$jsonrpcVersion); ?>)</h3>
325
+<?php if (class_exists('\PhpXmlRpc\JsonRpc\PhpJsonRpc')) echo ' and <a href="https://gggeek.github.io/phpxmlrpc-jsonrpc/">PHPJOSNRPC</a>, ver. '.htmlspecialchars(\PhpXmlRpc\JsonRpc\PhpJsonRpc::$jsonrpcVersion); ?>)</h3>
326 326
 <form name="frmaction" method="get" action="action.php" target="frmaction" onSubmit="switchFormMethod();">
327 327
 
328 328
     <table id="serverblock">
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
                 </select>
385 385
             </td>
386 386
             <td class="labelcell">Timeout:</td>
387
-            <td><input type="text" name="timeout" size="3" value="<?php if ($timeout > 0) { echo $timeout; } ?>"/></td>
387
+            <td><input type="text" name="timeout" size="3" value="<?php if ($timeout>0) { echo $timeout; } ?>"/></td>
388 388
             <td></td>
389 389
             <td></td>
390 390
         </tr>
Please login to merge, or discard this patch.
Braces   +13 added lines, -3 removed lines patch added patch discarded remove patch
@@ -71,7 +71,12 @@  discard block
 block discarded – undo
71 71
 <html lang="en">
72 72
 <head>
73 73
     <link rel="icon" type="image/vnd.microsoft.icon" href="favicon.ico">
74
-    <title><?php if (defined('DEFAULT_WSTYPE') && (DEFAULT_WSTYPE == 1 || DEFAULT_WSTYPE == 2)) echo 'JSON-RPC'; else echo 'XML-RPC'; ?> Debugger</title>
74
+    <title><?php if (defined('DEFAULT_WSTYPE') && (DEFAULT_WSTYPE == 1 || DEFAULT_WSTYPE == 2)) {
75
+    echo 'JSON-RPC';
76
+} else {
77
+    echo 'XML-RPC';
78
+}
79
+?> Debugger</title>
75 80
     <meta name="robots" content="index,nofollow"/>
76 81
     <script type="text/javascript" language="Javascript">
77 82
         if (window.name != 'frmcontroller')
@@ -308,8 +313,10 @@  discard block
 block discarded – undo
308 313
     </script>
309 314
 </head>
310 315
 <body
311
-    onload="<?php if ($hasjsonrpcclient) echo "switchtransport($wstype); " ?>switchaction(); switchssl(); switchauth(); swicthcainfo();<?php if ($run) {
316
+    onload="<?php if ($hasjsonrpcclient) {
317
+    echo "switchtransport($wstype); " ?>switchaction(); switchssl(); switchauth(); swicthcainfo();<?php if ($run) {
312 318
         echo ' document.frmaction.submit();';
319
+}
313 320
     } ?>">
314 321
 <h1>XML-RPC
315 322
 <?php if ($hasjsonrpcclient) {
@@ -322,7 +329,10 @@  discard block
 block discarded – undo
322 329
     echo ' / <form name="frmjsonrpc1" style="display: inline;" action="."><input name="yes" type="radio" onclick="switchtransport(1);"/></form>JSON-RPC 1.0 ';
323 330
 } ?>
324 331
 Debugger</h1><h3>(based on <a href="https://gggeek.github.io/phpxmlrpc/">PHPXMLRPC</a>, ver. <?php echo htmlspecialchars(\PhpXmlRpc\PhpXmlRpc::$xmlrpcVersion)?>
325
-<?php if (class_exists('\PhpXmlRpc\JsonRpc\PhpJsonRpc')) echo ' and <a href="https://gggeek.github.io/phpxmlrpc-jsonrpc/">PHPJOSNRPC</a>, ver. ' . htmlspecialchars(\PhpXmlRpc\JsonRpc\PhpJsonRpc::$jsonrpcVersion); ?>)</h3>
332
+<?php if (class_exists('\PhpXmlRpc\JsonRpc\PhpJsonRpc')) {
333
+    echo ' and <a href="https://gggeek.github.io/phpxmlrpc-jsonrpc/">PHPJOSNRPC</a>, ver. ' . htmlspecialchars(\PhpXmlRpc\JsonRpc\PhpJsonRpc::$jsonrpcVersion);
334
+}
335
+?>)</h3>
326 336
 <form name="frmaction" method="get" action="action.php" target="frmaction" onSubmit="switchFormMethod();">
327 337
 
328 338
     <table id="serverblock">
Please login to merge, or discard this patch.
debugger/common.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     // assume this is either a standalone install, or installed as Composer dependency
21 21
     /// @todo if the latter is true, should we just not skip using the custom Autoloader, and let a top-level
22 22
     ///       debugger include this one, taking care of autoloading?
23
-    include_once __DIR__ . "/../src/Autoloader.php";
23
+    include_once __DIR__."/../src/Autoloader.php";
24 24
     PhpXmlRpc\Autoloader::register();
25 25
 }
26 26
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         }
35 35
 
36 36
         // Variables that shouldn't be unset
37
-        $noUnset = array('GLOBALS',  '_GET', '_POST', '_COOKIE', '_REQUEST', '_SERVER', '_ENV', '_FILES');
37
+        $noUnset = array('GLOBALS', '_GET', '_POST', '_COOKIE', '_REQUEST', '_SERVER', '_ENV', '_FILES');
38 38
 
39 39
         $input = array_merge($_GET, $_POST, $_COOKIE, $_SERVER, $_ENV, $_FILES,
40 40
             isset($_SESSION) && is_array($_SESSION) ? $_SESSION : array()
@@ -86,8 +86,8 @@  discard block
 block discarded – undo
86 86
 $wstype = defined('DEFAULT_WSTYPE') ? DEFAULT_WSTYPE : 0;
87 87
 $id = '';
88 88
 if (isset($_GET['action'])) {
89
-    if (isset($_GET['wstype']) && ($_GET['wstype'] == '2'  || $_GET['wstype'] == '1' || $_GET['wstype'] == '0')) {
90
-        $wstype = (int)$_GET['wstype'];
89
+    if (isset($_GET['wstype']) && ($_GET['wstype'] == '2' || $_GET['wstype'] == '1' || $_GET['wstype'] == '0')) {
90
+        $wstype = (int) $_GET['wstype'];
91 91
         if ($wstype === 1 || $wstype === 2) {
92 92
             if (!$hasjsonrpcclient) {
93 93
                 $wstype = 0;
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
     $host = isset($_GET['host']) ? $_GET['host'] : 'localhost'; // using '' will trigger an xml-rpc error...
103 103
     if (isset($_GET['protocol']) && ($_GET['protocol'] == '1' || $_GET['protocol'] == '2' || $_GET['protocol'] == '3'
104 104
         || $_GET['protocol'] == '4')) {
105
-        $protocol = (int)$_GET['protocol'];
105
+        $protocol = (int) $_GET['protocol'];
106 106
     }
107 107
     if (strpos($host, 'http://') === 0) {
108 108
         // NB: if protocol is https or h2, it will override http://
@@ -114,18 +114,18 @@  discard block
 block discarded – undo
114 114
             $protocol = 2;
115 115
         }
116 116
     }
117
-    $port = isset($_GET['port']) ? (int)$_GET['port'] : '';
117
+    $port = isset($_GET['port']) ? (int) $_GET['port'] : '';
118 118
     if ($port === 0) {
119 119
         $port = '';
120 120
     }
121 121
     $path = isset($_GET['path']) ? $_GET['path'] : '';
122 122
     // in case user forgot initial '/' in xml-rpc server path, add it back
123 123
     if ($path && ($path[0]) != '/') {
124
-        $path = '/' . $path;
124
+        $path = '/'.$path;
125 125
     }
126 126
 
127 127
     if (isset($_GET['debug']) && ($_GET['debug'] == '1' || $_GET['debug'] == '2')) {
128
-        $debug = (int)$_GET['debug'];
128
+        $debug = (int) $_GET['debug'];
129 129
     }
130 130
 
131 131
     $verifyhost = (isset($_GET['verifyhost']) && ($_GET['verifyhost'] == '1' || $_GET['verifyhost'] == '2')) ? $_GET['verifyhost'] : 0;
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     /// @todo what about an https proxy?
143 143
     $proxyuser = isset($_GET['proxyuser']) ? $_GET['proxyuser'] : '';
144 144
     $proxypwd = isset($_GET['proxypwd']) ? $_GET['proxypwd'] : '';
145
-    $timeout = isset($_GET['timeout']) ? (int)$_GET['timeout'] : 0;
145
+    $timeout = isset($_GET['timeout']) ? (int) $_GET['timeout'] : 0;
146 146
     $action = $_GET['action'];
147 147
 
148 148
     $method = isset($_GET['method']) ? $_GET['method'] : '';
@@ -157,15 +157,15 @@  discard block
 block discarded – undo
157 157
     $username = isset($_GET['username']) ? $_GET['username'] : '';
158 158
     $password = isset($_GET['password']) ? $_GET['password'] : '';
159 159
 
160
-    $authtype = (isset($_GET['authtype']) && ($_GET['authtype'] == '2' || $_GET['authtype'] == '8')) ? (int)$_GET['authtype'] : 1;
160
+    $authtype = (isset($_GET['authtype']) && ($_GET['authtype'] == '2' || $_GET['authtype'] == '8')) ? (int) $_GET['authtype'] : 1;
161 161
 
162 162
     if (isset($_GET['requestcompression']) && ($_GET['requestcompression'] == '1' || $_GET['requestcompression'] == '2')) {
163
-        (int)$requestcompression = $_GET['requestcompression'];
163
+        (int) $requestcompression = $_GET['requestcompression'];
164 164
     } else {
165 165
         $requestcompression = 0;
166 166
     }
167 167
     if (isset($_GET['responsecompression']) && ($_GET['responsecompression'] == '1' || $_GET['responsecompression'] == '2' || $_GET['responsecompression'] == '3')) {
168
-        $responsecompression = (int)$_GET['responsecompression'];
168
+        $responsecompression = (int) $_GET['responsecompression'];
169 169
     } else {
170 170
         $responsecompression = 0;
171 171
     }
Please login to merge, or discard this patch.