Passed
Push — master ( e5dcc4...1e905b )
by Gaetano
08:26
created
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.
tests/06EncoderTest.php 1 patch
Spacing   +2 added lines, -2 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__ . '/LoggerAwareTestCase.php';
3
+include_once __DIR__.'/LoggerAwareTestCase.php';
4 4
 
5 5
 use PhpXmlRpc\Encoder;
6 6
 use PhpXmlRpc\Request;
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         /// @todo it seems that old php versions can not automatically transform latin to utf8 upon xml parsing.
79 79
         ///       We should fix that, then re-enable this test
80 80
         if (version_compare(PHP_VERSION, '5.6.0', '>=')) {
81
-            $i = $e->decodeXml('<?xml version="1.0" encoding="ISO-8859-15" ?><value><string>' . $string . '</string></value>');
81
+            $i = $e->decodeXml('<?xml version="1.0" encoding="ISO-8859-15" ?><value><string>'.$string.'</string></value>');
82 82
             $this->assertEquals($string, $i->scalarVal());
83 83
         }
84 84
 
Please login to merge, or discard this patch.
tests/04ParsingTest.php 1 patch
Spacing   +16 added lines, -16 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__ . '/LoggerAwareTestCase.php';
3
+include_once __DIR__.'/LoggerAwareTestCase.php';
4 4
 
5 5
 use \PhpXmlRpc\Request;
6 6
 
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 
104 104
     public function testI8()
105 105
     {
106
-        if (PHP_INT_SIZE == 4 ) {
106
+        if (PHP_INT_SIZE == 4) {
107 107
             $this->markTestSkipped('Can not test i8 as php is compiled in 32 bit mode');
108 108
         }
109 109
 
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
 
178 178
     public function testUnicodeInMemberName()
179 179
     {
180
-        $str = "G" . chr(252) . "nter, El" . chr(232) . "ne";
180
+        $str = "G".chr(252)."nter, El".chr(232)."ne";
181 181
         $v = array($str => new xmlrpcval(1));
182 182
         $r = new xmlrpcresp(new xmlrpcval($v, 'struct'));
183 183
         $r = $r->serialize();
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
         $response = @utf8_encode(
194 194
             '<?xml version="1.0"?>
195 195
 <!-- covers what happens when lib receives UTF8 chars in response text and comments -->
196
-<!-- ' . chr(224) . chr(252) . chr(232) . '&#224;&#252;&#232; -->
196
+<!-- ' . chr(224).chr(252).chr(232).'&#224;&#252;&#232; -->
197 197
 <methodResponse>
198 198
 <fault>
199 199
 <value>
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
 </member>
205 205
 <member>
206 206
 <name>faultString</name>
207
-<value><string>' . chr(224) . chr(252) . chr(232) . '&#224;&#252;&#232;</string></value>
207
+<value><string>' . chr(224).chr(252).chr(232).'&#224;&#252;&#232;</string></value>
208 208
 </member>
209 209
 </struct>
210 210
 </value>
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
         $m = $this->newRequest('dummy');
214 214
         $r = $m->parseResponse($response);
215 215
         $v = $r->faultString();
216
-        $this->assertEquals(chr(224) . chr(252) . chr(232) . chr(224) . chr(252) . chr(232), $v);
216
+        $this->assertEquals(chr(224).chr(252).chr(232).chr(224).chr(252).chr(232), $v);
217 217
     }
218 218
 
219 219
     public function testBrokenRequests()
@@ -470,8 +470,8 @@  discard block
 block discarded – undo
470 470
         $i = \PhpXmlRpc\PhpXmlRpc::$xmlrpc_reject_invalid_values;
471 471
         \PhpXmlRpc\PhpXmlRpc::$xmlrpc_reject_invalid_values = true;
472 472
 
473
-        foreach($values as $value) {
474
-            $f = '<?xml version="1.0"?><methodResponse><params><param><value>' . $value . '</value></param></params></methodResponse> ';
473
+        foreach ($values as $value) {
474
+            $f = '<?xml version="1.0"?><methodResponse><params><param><value>'.$value.'</value></param></params></methodResponse> ';
475 475
             $r = $s->parseResponse($f);
476 476
             $v = $r->faultCode();
477 477
             $this->assertEquals(2, $v, "Testing $value");
@@ -576,11 +576,11 @@  discard block
 block discarded – undo
576 576
 
577 577
     public function testUTF8Response()
578 578
     {
579
-        $string = chr(224) . chr(252) . chr(232);
579
+        $string = chr(224).chr(252).chr(232);
580 580
 
581 581
         $s = $this->newRequest('dummy');
582
-        $f = "HTTP/1.1 200 OK\r\nContent-type: text/xml; charset=UTF-8\r\n\r\n" . '<?xml version="1.0"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member>
583
-<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . @utf8_encode($string) . '</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse>
582
+        $f = "HTTP/1.1 200 OK\r\nContent-type: text/xml; charset=UTF-8\r\n\r\n".'<?xml version="1.0"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member>
583
+<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . @utf8_encode($string).'</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse>
584 584
 ';
585 585
         $r = $s->parseResponse($f, false, 'phpvals');
586 586
         $v = $r->value();
@@ -588,7 +588,7 @@  discard block
 block discarded – undo
588 588
         $this->assertEquals($string, $v);
589 589
 
590 590
         $f = '<?xml version="1.0" encoding="UTF-8"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member>
591
-<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . @utf8_encode($string) . '</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse>
591
+<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . @utf8_encode($string).'</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse>
592 592
 ';
593 593
         $r = $s->parseResponse($f, false, 'phpvals');
594 594
         $v = $r->value();
@@ -604,11 +604,11 @@  discard block
 block discarded – undo
604 604
 
605 605
     public function testLatin1Response()
606 606
     {
607
-        $string = chr(224) . chr(252) . chr(232);
607
+        $string = chr(224).chr(252).chr(232);
608 608
 
609 609
         $s = $this->newRequest('dummy');
610
-        $f = "HTTP/1.1 200 OK\r\nContent-type: text/xml; charset=ISO-8859-1\r\n\r\n" . '<?xml version="1.0"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member>
611
-<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . $string . '</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse>
610
+        $f = "HTTP/1.1 200 OK\r\nContent-type: text/xml; charset=ISO-8859-1\r\n\r\n".'<?xml version="1.0"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member>
611
+<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . $string.'</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse>
612 612
 ';
613 613
         $r = $s->parseResponse($f, false, 'phpvals');
614 614
         $v = $r->value();
@@ -616,7 +616,7 @@  discard block
 block discarded – undo
616 616
         $this->assertEquals($string, $v);
617 617
 
618 618
         $f = '<?xml version="1.0" encoding="ISO-8859-1"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member>
619
-<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . $string . '</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse>
619
+<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . $string.'</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse>
620 620
 ';
621 621
         $r = $s->parseResponse($f, false, 'phpvals');
622 622
         $v = $r->value();
Please login to merge, or discard this patch.
tests/07ClientTest.php 1 patch
Spacing   +3 added lines, -3 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
 
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
         $this->client->server .= 'XXX';
65 65
         $dnsinfo = @dns_get_record($this->client->server);
66 66
         if ($dnsinfo) {
67
-            $this->markTestSkipped('Seems like there is a catchall DNS in effect: host ' . $this->client->server . ' found');
67
+            $this->markTestSkipped('Seems like there is a catchall DNS in effect: host '.$this->client->server.' found');
68 68
         } else {
69 69
             $m = new xmlrpcmsg('examples.echo', array(
70 70
                 new xmlrpcval('hello', 'string'),
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 
94 94
         // now test a successful connection
95 95
         $server = explode(':', $this->args['HTTPSERVER']);
96
-        if (count($server) > 1) {
96
+        if (count($server)>1) {
97 97
             $this->client->port = $server[1];
98 98
         }
99 99
         $this->client->server = $server[0];
Please login to merge, or discard this patch.
tests/02ValueTest.php 1 patch
Spacing   +5 added lines, -5 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__ . '/LoggerAwareTestCase.php';
3
+include_once __DIR__.'/LoggerAwareTestCase.php';
4 4
 
5 5
 use PhpXmlRpc\Encoder;
6 6
 use PhpXmlRpc\Helper\XMLParser;
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
             if (version_compare(PHP_VERSION, '8.0', '>=')) {
144 144
                 $str = sprintf("%f", $v->scalarval());
145 145
             } else {
146
-                $str = (string)$v->scalarval();
146
+                $str = (string) $v->scalarval();
147 147
             }
148 148
             if (strpos($str, ',') == 1) {
149 149
                 $r = $v->serialize();
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
         $this->assertequals(1, count($v1));
165 165
         $out = array('me' => array(), 'mytype' => 2, '_php_class' => null);
166 166
 
167
-        foreach($v1 as $key => $val)
167
+        foreach ($v1 as $key => $val)
168 168
         {
169 169
             $this->assertArrayHasKey($key, $out);
170 170
             $expected = $out[$key];
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
         $this->assertequals(2, count($v2));
180 180
         $out = array(array('key' => 0, 'value'  => 'object'), array('key' => 1, 'value'  => 'object'));
181 181
         $i = 0;
182
-        foreach($v2 as $key => $val)
182
+        foreach ($v2 as $key => $val)
183 183
         {
184 184
             $expected = $out[$i];
185 185
             $this->assertequals($expected['key'], $key);
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
     {
207 207
         // nb: make sure that  the serialized xml corresponding to this is > 10MB in size
208 208
         $data = array();
209
-        for ($i = 0; $i < 500000; $i++ ) {
209
+        for ($i = 0; $i<500000; $i++) {
210 210
             $data[] = 'hello world';
211 211
         }
212 212
 
Please login to merge, or discard this patch.
tests/03MessagesTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-include_once __DIR__ . '/LoggerAwareTestCase.php';
3
+include_once __DIR__.'/LoggerAwareTestCase.php';
4 4
 
5 5
 use PhpXmlRpc\Response;
6 6
 
Please login to merge, or discard this patch.
extras/benchmark.php 1 patch
Spacing   +48 added lines, -48 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@  discard block
 block discarded – undo
19 19
 use PhpXmlRpc\Encoder;
20 20
 
21 21
 /// @todo allow autoloading when the library is installed as dependency
22
-include_once __DIR__ . '/../vendor/autoload.php';
22
+include_once __DIR__.'/../vendor/autoload.php';
23 23
 
24
-include __DIR__ . '/../tests/parse_args.php';
24
+include __DIR__.'/../tests/parse_args.php';
25 25
 $args = argParser::getArgs();
26 26
 
27 27
 function begin_test($test_name, $test_case)
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     if (!isset($test_results[$test_name][$test_case])) {
42 42
         trigger_error('ending test that was not started');
43 43
     }
44
-    $test_results[$test_name][$test_case]['time'] = $end - $test_results[$test_name][$test_case]['time'];
44
+    $test_results[$test_name][$test_case]['time'] = $end-$test_results[$test_name][$test_case]['time'];
45 45
     $test_results[$test_name][$test_case]['result'] = $test_result;
46 46
     echo '.';
47 47
     flush();
@@ -75,24 +75,24 @@  discard block
 block discarded – undo
75 75
 }
76 76
 
77 77
 if ($is_web) {
78
-    echo "<h3>Using lib version: " . PhpXmlRpc::$xmlrpcVersion . " on PHP version: " . phpversion() . "</h3>\n";
78
+    echo "<h3>Using lib version: ".PhpXmlRpc::$xmlrpcVersion." on PHP version: ".phpversion()."</h3>\n";
79 79
     if ($xd) {
80
-        echo "<h4>XDEBUG profiling enabled: skipping remote tests. Trace file is: " . htmlspecialchars(xdebug_get_profiler_filename()) . "</h4>\n";
80
+        echo "<h4>XDEBUG profiling enabled: skipping remote tests. Trace file is: ".htmlspecialchars(xdebug_get_profiler_filename())."</h4>\n";
81 81
     }
82 82
     flush();
83 83
     ob_flush();
84 84
 } else {
85
-    echo "Using lib version: " . PhpXmlRpc::$xmlrpcVersion . " on PHP version: " . phpversion() . "\n";
85
+    echo "Using lib version: ".PhpXmlRpc::$xmlrpcVersion." on PHP version: ".phpversion()."\n";
86 86
     if ($xd) {
87
-        echo "XDEBUG profiling enabled: skipping remote tests\nTrace file is: " . xdebug_get_profiler_filename() . "\n";
87
+        echo "XDEBUG profiling enabled: skipping remote tests\nTrace file is: ".xdebug_get_profiler_filename()."\n";
88 88
     }
89 89
 }
90 90
 
91 91
 // test 'manual style' data encoding vs. 'automatic style' encoding
92 92
 begin_test('Data encoding (large array)', 'manual encoding');
93
-for ($i = 0; $i < $num_tests; $i++) {
93
+for ($i = 0; $i<$num_tests; $i++) {
94 94
     $vals = array();
95
-    for ($j = 0; $j < 10; $j++) {
95
+    for ($j = 0; $j<10; $j++) {
96 96
         $valArray = array();
97 97
         foreach ($data[$j] as $key => $val) {
98 98
             $values = array();
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
 
118 118
 begin_test('Data encoding (large array)', 'automatic encoding');
119 119
 $encoder = new Encoder();
120
-for ($i = 0; $i < $num_tests; $i++) {
120
+for ($i = 0; $i<$num_tests; $i++) {
121 121
     $value = $encoder->encode($data, array('auto_dates'));
122 122
     $out = $value->serialize();
123 123
 }
@@ -125,8 +125,8 @@  discard block
 block discarded – undo
125 125
 
126 126
 if (function_exists('xmlrpc_set_type')) {
127 127
     begin_test('Data encoding (large array)', 'xmlrpc-epi encoding');
128
-    for ($i = 0; $i < $num_tests; $i++) {
129
-        for ($j = 0; $j < 10; $j++) {
128
+    for ($i = 0; $i<$num_tests; $i++) {
129
+        for ($j = 0; $j<10; $j++) {
130 130
             foreach ($keys as $k) {
131 131
                 xmlrpc_set_type($data[$j][$k][4], 'datetime');
132 132
                 xmlrpc_set_type($data[$j][$k][8], 'datetime');
@@ -140,18 +140,18 @@  discard block
 block discarded – undo
140 140
 // test 'old style' data decoding vs. 'automatic style' decoding
141 141
 $dummy = new Request('');
142 142
 $out = new Response($value);
143
-$in = '<?xml version="1.0" ?>' . "\n" . $out->serialize();
143
+$in = '<?xml version="1.0" ?>'."\n".$out->serialize();
144 144
 
145 145
 begin_test('Data decoding (large array)', 'manual decoding');
146
-for ($i = 0; $i < $num_tests; $i++) {
146
+for ($i = 0; $i<$num_tests; $i++) {
147 147
     $response = $dummy->parseResponse($in, true);
148 148
     $value = $response->value();
149 149
     $result = array();
150
-    foreach($value as $val1) {
150
+    foreach ($value as $val1) {
151 151
         $out = array();
152
-        foreach($val1 as $name => $val) {
152
+        foreach ($val1 as $name => $val) {
153 153
             $out[$name] = array();
154
-            foreach($val as $data) {
154
+            foreach ($val as $data) {
155 155
                 $out[$name][] = $data->scalarVal();
156 156
             }
157 157
         }
@@ -161,18 +161,18 @@  discard block
 block discarded – undo
161 161
 end_test('Data decoding (large array)', 'manual decoding', $result);
162 162
 
163 163
 begin_test('Data decoding (large array)', 'manual decoding deprecated');
164
-for ($i = 0; $i < $num_tests; $i++) {
164
+for ($i = 0; $i<$num_tests; $i++) {
165 165
     $response = $dummy->ParseResponse($in, true);
166 166
     $value = $response->value();
167 167
     $result = array();
168 168
     $l = $value->arraySize();
169
-    for ($k = 0; $k < $l; $k++) {
169
+    for ($k = 0; $k<$l; $k++) {
170 170
         $val1 = $value->arrayMem($k);
171 171
         $out = array();
172
-        foreach($val1 as $name => $val) {
172
+        foreach ($val1 as $name => $val) {
173 173
             $out[$name] = array();
174 174
             $m = $val->arraySize();
175
-            for ($j = 0; $j < $m; $j++) {
175
+            for ($j = 0; $j<$m; $j++) {
176 176
                 $data = $val->arrayMem($j);
177 177
                 $out[$name][] = $data->scalarVal();
178 178
             }
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 end_test('Data decoding (large array)', 'manual decoding deprecated', $result);
184 184
 
185 185
 begin_test('Data decoding (large array)', 'automatic decoding');
186
-for ($i = 0; $i < $num_tests; $i++) {
186
+for ($i = 0; $i<$num_tests; $i++) {
187 187
     $response = $dummy->parseResponse($in, true, 'phpvals');
188 188
     $value = $response->value();
189 189
 }
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
 
192 192
 if (function_exists('xmlrpc_decode')) {
193 193
     begin_test('Data decoding (large array)', 'xmlrpc-epi decoding');
194
-    for ($i = 0; $i < $num_tests; $i++) {
194
+    for ($i = 0; $i<$num_tests; $i++) {
195 195
         $response = $dummy->parseResponse($in, true, 'xml');
196 196
         $value = xmlrpc_decode($response->value());
197 197
     }
@@ -208,16 +208,16 @@  discard block
 block discarded – undo
208 208
     $value = $encoder->encode($data1, array('auto_dates'));
209 209
     $req = new Request('interopEchoTests.echoValue', array($value));
210 210
     $reqs = array();
211
-    for ($i = 0; $i < $num_tests; $i++) {
211
+    for ($i = 0; $i<$num_tests; $i++) {
212 212
         $reqs[] = $req;
213 213
     }
214 214
 
215 215
     $server = explode(':', $args['HTTPSERVER']);
216
-    if (count($server) > 1) {
217
-        $srv = 'http://' . $server[0] . '://' . $server[1] . $args['HTTPURI'];
216
+    if (count($server)>1) {
217
+        $srv = 'http://'.$server[0].'://'.$server[1].$args['HTTPURI'];
218 218
         $c = new Client($args['HTTPURI'], $server[0], $server[1]);
219 219
     } else {
220
-        $srv = 'http://' . $args['HTTPSERVER'] . $args['HTTPURI'];
220
+        $srv = 'http://'.$args['HTTPSERVER'].$args['HTTPURI'];
221 221
         $c = new Client($args['HTTPURI'], $args['HTTPSERVER']);
222 222
     }
223 223
 
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
 
230 230
     begin_test($testName, 'http 10');
231 231
     $response = array();
232
-    for ($i = 0; $i < $num_tests; $i++) {
232
+    for ($i = 0; $i<$num_tests; $i++) {
233 233
         $resp = $c->send($req);
234 234
         $response[] = $resp->value();
235 235
     }
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
         $c->setOption(Client::OPT_KEEPALIVE, false);
240 240
         begin_test($testName, 'http 11 no keepalive');
241 241
         $response = array();
242
-        for ($i = 0; $i < $num_tests; $i++) {
242
+        for ($i = 0; $i<$num_tests; $i++) {
243 243
             $resp = $c->send($req, 10, 'http11');
244 244
             $response[] = $resp->value();
245 245
         }
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
 
248 248
         begin_test($testName, 'http 11 w. keep-alive');
249 249
         $response = array();
250
-        for ($i = 0; $i < $num_tests; $i++) {
250
+        for ($i = 0; $i<$num_tests; $i++) {
251 251
             $resp = $c->send($req, 10, 'http11');
252 252
             $response[] = $resp->value();
253 253
         }
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
 
270 270
         begin_test($testName, 'http 10 w. compression');
271 271
         $response = array();
272
-        for ($i = 0; $i < $num_tests; $i++) {
272
+        for ($i = 0; $i<$num_tests; $i++) {
273 273
             $resp = $c->send($req);
274 274
             $response[] = $resp->value();
275 275
         }
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
             $c->setOption(Client::OPT_KEEPALIVE, false);
280 280
             begin_test($testName, 'http 11 w. compression and no keepalive');
281 281
             $response = array();
282
-            for ($i = 0; $i < $num_tests; $i++) {
282
+            for ($i = 0; $i<$num_tests; $i++) {
283 283
                 $resp = $c->send($req, 10, 'http11');
284 284
                 $response[] = $resp->value();
285 285
             }
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
             $c->setOption(Client::OPT_KEEPALIVE, true);
289 289
             begin_test($testName, 'http 11 w. keep-alive and compression');
290 290
             $response = array();
291
-            for ($i = 0; $i < $num_tests; $i++) {
291
+            for ($i = 0; $i<$num_tests; $i++) {
292 292
                 $resp = $c->send($req, 10, 'http11');
293 293
                 $response[] = $resp->value();
294 294
             }
@@ -309,11 +309,11 @@  discard block
 block discarded – undo
309 309
         /// test multicall vs. many calls vs. keep-alives - HTTPS
310 310
 
311 311
         $server = explode(':', $args['HTTPSSERVER']);
312
-        if (count($server) > 1) {
313
-            $srv = 'https://' . $server[0] . ':' . $server[1] . $args['HTTPSURI'];
312
+        if (count($server)>1) {
313
+            $srv = 'https://'.$server[0].':'.$server[1].$args['HTTPSURI'];
314 314
             $c = new Client($args['HTTPSURI'], $server[0], $server[1], 'https');
315 315
         } else {
316
-            $srv = 'https://' . $args['HTTPSSERVER'] . $args['HTTPSURI'];
316
+            $srv = 'https://'.$args['HTTPSSERVER'].$args['HTTPSURI'];
317 317
             $c = new Client($args['HTTPSURI'], $args['HTTPSSERVER'], 443, 'https');
318 318
         }
319 319
         $c->setOption(Client::OPT_VERIFY_PEER, !$args['HTTPSIGNOREPEER']);
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
         $c->setOption(Client::OPT_KEEPALIVE, false);
328 328
         begin_test($testName, 'https no keep-alive');
329 329
         $response = array();
330
-        for ($i = 0; $i < $num_tests; $i++) {
330
+        for ($i = 0; $i<$num_tests; $i++) {
331 331
             $resp = $c->send($req);
332 332
             $response[] = $resp->value();
333 333
         }
@@ -336,7 +336,7 @@  discard block
 block discarded – undo
336 336
         $c->setOption(Client::OPT_KEEPALIVE, true);
337 337
         begin_test($testName, 'https w. keep-alive');
338 338
         $response = array();
339
-        for ($i = 0; $i < $num_tests; $i++) {
339
+        for ($i = 0; $i<$num_tests; $i++) {
340 340
             $resp = $c->send($req, 10);
341 341
             $response[] = $resp->value();
342 342
         }
@@ -357,7 +357,7 @@  discard block
 block discarded – undo
357 357
             $c->setOption(Client::OPT_KEEPALIVE, false);
358 358
             begin_test($testName, 'https w. compression and no keepalive');
359 359
             $response = array();
360
-            for ($i = 0; $i < $num_tests; $i++) {
360
+            for ($i = 0; $i<$num_tests; $i++) {
361 361
                 $resp = $c->send($req);
362 362
                 $response[] = $resp->value();
363 363
             }
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
             $c->setOption(Client::OPT_KEEPALIVE, true);
367 367
             begin_test($testName, 'https w. keep-alive and compression');
368 368
             $response = array();
369
-            for ($i = 0; $i < $num_tests; $i++) {
369
+            for ($i = 0; $i<$num_tests; $i++) {
370 370
                 $resp = $c->send($req, 10);
371 371
                 $response[] = $resp->value();
372 372
             }
@@ -387,11 +387,11 @@  discard block
 block discarded – undo
387 387
         /// test multicall vs. many calls vs. keep-alives - HTTP/2
388 388
 
389 389
         $server = explode(':', $args['HTTPSSERVER']);
390
-        if (count($server) > 1) {
391
-            $srv = 'https://' . $server[0] . ':' . $server[1] . $args['HTTPSURI'];
390
+        if (count($server)>1) {
391
+            $srv = 'https://'.$server[0].':'.$server[1].$args['HTTPSURI'];
392 392
             $c = new Client($args['HTTPSURI'], $server[0], $server[1], 'https');
393 393
         } else {
394
-            $srv = 'https://' . $args['HTTPSSERVER'] . $args['HTTPSURI'];
394
+            $srv = 'https://'.$args['HTTPSSERVER'].$args['HTTPSURI'];
395 395
             $c = new Client($args['HTTPSURI'], $args['HTTPSSERVER'], 443, 'h2');
396 396
         }
397 397
         $c->setOption(Client::OPT_VERIFY_PEER, !$args['HTTPSIGNOREPEER']);
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
         $c->setOption(Client::OPT_KEEPALIVE, false);
406 406
         begin_test($testName, 'http2 no keep-alive');
407 407
         $response = array();
408
-        for ($i = 0; $i < $num_tests; $i++) {
408
+        for ($i = 0; $i<$num_tests; $i++) {
409 409
             $resp = $c->send($req);
410 410
             $response[] = $resp->value();
411 411
         }
@@ -414,7 +414,7 @@  discard block
 block discarded – undo
414 414
         $c->setOption(Client::OPT_KEEPALIVE, true);
415 415
         begin_test($testName, 'http2 w. keep-alive');
416 416
         $response = array();
417
-        for ($i = 0; $i < $num_tests; $i++) {
417
+        for ($i = 0; $i<$num_tests; $i++) {
418 418
             $resp = $c->send($req, 10);
419 419
             $response[] = $resp->value();
420 420
         }
@@ -435,7 +435,7 @@  discard block
 block discarded – undo
435 435
             $c->setOption(Client::OPT_KEEPALIVE, false);
436 436
             begin_test($testName, 'http2 w. compression and no keepalive');
437 437
             $response = array();
438
-            for ($i = 0; $i < $num_tests; $i++) {
438
+            for ($i = 0; $i<$num_tests; $i++) {
439 439
                 $resp = $c->send($req);
440 440
                 $response[] = $resp->value();
441 441
             }
@@ -444,7 +444,7 @@  discard block
 block discarded – undo
444 444
             $c->setOption(Client::OPT_KEEPALIVE, true);
445 445
             begin_test($testName, 'http2 w. keep-alive and compression');
446 446
             $response = array();
447
-            for ($i = 0; $i < $num_tests; $i++) {
447
+            for ($i = 0; $i<$num_tests; $i++) {
448 448
                 $resp = $c->send($req, 10);
449 449
                 $response[] = $resp->value();
450 450
             }
@@ -466,7 +466,7 @@  discard block
 block discarded – undo
466 466
 foreach ($test_results as $test => $results) {
467 467
     echo "\nTEST: $test\n";
468 468
     foreach ($results as $case => $data) {
469
-        echo "  $case: {$data['time']} secs - Output data CRC: " . crc32(serialize($data['result'])) . "\n";
469
+        echo "  $case: {$data['time']} secs - Output data CRC: ".crc32(serialize($data['result']))."\n";
470 470
     }
471 471
 }
472 472
 
Please login to merge, or discard this patch.