Completed
Push — master ( 20660a...640b8c )
by Gaetano
04:12
created
src/Response.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -110,36 +110,36 @@
 block discarded – undo
110 110
     public function serialize($charsetEncoding = '')
111 111
     {
112 112
         if ($charsetEncoding != '') {
113
-            $this->content_type = 'text/xml; charset=' . $charsetEncoding;
113
+            $this->content_type = 'text/xml; charset='.$charsetEncoding;
114 114
         } else {
115 115
             $this->content_type = 'text/xml';
116 116
         }
117 117
         if (PhpXmlRpc::$xmlrpc_null_apache_encoding) {
118
-            $result = "<methodResponse xmlns:ex=\"" . PhpXmlRpc::$xmlrpc_null_apache_encoding_ns . "\">\n";
118
+            $result = "<methodResponse xmlns:ex=\"".PhpXmlRpc::$xmlrpc_null_apache_encoding_ns."\">\n";
119 119
         } else {
120 120
             $result = "<methodResponse>\n";
121 121
         }
122 122
         if ($this->errno) {
123 123
             // G. Giunta 2005/2/13: let non-ASCII response messages be tolerated by clients
124 124
             // by xml-encoding non ascii chars
125
-            $result .= "<fault>\n" .
126
-                "<value>\n<struct><member><name>faultCode</name>\n<value><int>" . $this->errno .
127
-                "</int></value>\n</member>\n<member>\n<name>faultString</name>\n<value><string>" .
128
-                Charset::instance()->encodeEntities($this->errstr, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "</string></value>\n</member>\n" .
125
+            $result .= "<fault>\n".
126
+                "<value>\n<struct><member><name>faultCode</name>\n<value><int>".$this->errno.
127
+                "</int></value>\n</member>\n<member>\n<name>faultString</name>\n<value><string>".
128
+                Charset::instance()->encodeEntities($this->errstr, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding)."</string></value>\n</member>\n".
129 129
                 "</struct>\n</value>\n</fault>";
130 130
         } else {
131 131
             if (!is_object($this->val) || !is_a($this->val, 'PhpXmlRpc\Value')) {
132 132
                 if (is_string($this->val) && $this->valtyp == 'xml') {
133
-                    $result .= "<params>\n<param>\n" .
134
-                        $this->val .
133
+                    $result .= "<params>\n<param>\n".
134
+                        $this->val.
135 135
                         "</param>\n</params>";
136 136
                 } else {
137 137
                     /// @todo try to build something serializable?
138 138
                     throw new \Exception('cannot serialize xmlrpc response objects whose content is native php values');
139 139
                 }
140 140
             } else {
141
-                $result .= "<params>\n<param>\n" .
142
-                    $this->val->serialize($charsetEncoding) .
141
+                $result .= "<params>\n<param>\n".
142
+                    $this->val->serialize($charsetEncoding).
143 143
                     "</param>\n</params>";
144 144
             }
145 145
         }
Please login to merge, or discard this patch.
src/Autoloader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
             return;
30 30
         }
31 31
 
32
-        if (is_file($file = __DIR__ . str_replace(array('PhpXmlRpc\\', '\\'), '/', $class).'.php')) {
32
+        if (is_file($file = __DIR__.str_replace(array('PhpXmlRpc\\', '\\'), '/', $class).'.php')) {
33 33
             require $file;
34 34
         }
35 35
     }
Please login to merge, or discard this patch.
src/Server.php 1 patch
Spacing   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -138,12 +138,12 @@  discard block
 block discarded – undo
138 138
      */
139 139
     public static function xmlrpc_debugmsg($msg)
140 140
     {
141
-        static::$_xmlrpc_debuginfo .= $msg . "\n";
141
+        static::$_xmlrpc_debuginfo .= $msg."\n";
142 142
     }
143 143
 
144 144
     public static function error_occurred($msg)
145 145
     {
146
-        static::$_xmlrpcs_occurred_errors .= $msg . "\n";
146
+        static::$_xmlrpcs_occurred_errors .= $msg."\n";
147 147
     }
148 148
 
149 149
     /**
@@ -162,10 +162,10 @@  discard block
 block discarded – undo
162 162
         // user debug info should be encoded by the end user using the INTERNAL_ENCODING
163 163
         $out = '';
164 164
         if ($this->debug_info != '') {
165
-            $out .= "<!-- SERVER DEBUG INFO (BASE64 ENCODED):\n" . base64_encode($this->debug_info) . "\n-->\n";
165
+            $out .= "<!-- SERVER DEBUG INFO (BASE64 ENCODED):\n".base64_encode($this->debug_info)."\n-->\n";
166 166
         }
167 167
         if (static::$_xmlrpc_debuginfo != '') {
168
-            $out .= "<!-- DEBUG INFO:\n" . Charset::instance()->encodeEntities(str_replace('--', '_-', static::$_xmlrpc_debuginfo), PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "\n-->\n";
168
+            $out .= "<!-- DEBUG INFO:\n".Charset::instance()->encodeEntities(str_replace('--', '_-', static::$_xmlrpc_debuginfo), PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding)."\n-->\n";
169 169
             // NB: a better solution MIGHT be to use CDATA, but we need to insert it
170 170
             // into return payload AFTER the beginning tag
171 171
             //$out .= "<![CDATA[ DEBUG INFO:\n\n" . str_replace(']]>', ']_]_>', static::$_xmlrpc_debuginfo) . "\n]]>\n";
@@ -195,8 +195,8 @@  discard block
 block discarded – undo
195 195
         $this->debug_info = '';
196 196
 
197 197
         // Save what we received, before parsing it
198
-        if ($this->debug > 1) {
199
-            $this->debugmsg("+++GOT+++\n" . $data . "\n+++END+++");
198
+        if ($this->debug>1) {
199
+            $this->debugmsg("+++GOT+++\n".$data."\n+++END+++");
200 200
         }
201 201
 
202 202
         $r = $this->parseRequestHeaders($data, $reqCharset, $respCharset, $respEncoding);
@@ -208,14 +208,14 @@  discard block
 block discarded – undo
208 208
         // save full body of request into response, for more debugging usages
209 209
         $r->raw_data = $rawData;
210 210
 
211
-        if ($this->debug > 2 && static::$_xmlrpcs_occurred_errors) {
212
-            $this->debugmsg("+++PROCESSING ERRORS AND WARNINGS+++\n" .
213
-                static::$_xmlrpcs_occurred_errors . "+++END+++");
211
+        if ($this->debug>2 && static::$_xmlrpcs_occurred_errors) {
212
+            $this->debugmsg("+++PROCESSING ERRORS AND WARNINGS+++\n".
213
+                static::$_xmlrpcs_occurred_errors."+++END+++");
214 214
         }
215 215
 
216 216
         $payload = $this->xml_header($respCharset);
217
-        if ($this->debug > 0) {
218
-            $payload = $payload . $this->serializeDebug($respCharset);
217
+        if ($this->debug>0) {
218
+            $payload = $payload.$this->serializeDebug($respCharset);
219 219
         }
220 220
 
221 221
         // G. Giunta 2006-01-27: do not create response serialization if it has
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
         if (empty($r->payload)) {
224 224
             $r->serialize($respCharset);
225 225
         }
226
-        $payload = $payload . $r->payload;
226
+        $payload = $payload.$r->payload;
227 227
 
228 228
         if ($returnPayload) {
229 229
             return $payload;
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
         // if we get a warning/error that has output some text before here, then we cannot
233 233
         // add a new header. We cannot say we are sending xml, either...
234 234
         if (!headers_sent()) {
235
-            header('Content-Type: ' . $r->content_type);
235
+            header('Content-Type: '.$r->content_type);
236 236
             // we do not know if client actually told us an accepted charset, but if he did
237 237
             // we have to tell him what we did
238 238
             header("Vary: Accept-Charset");
@@ -258,10 +258,10 @@  discard block
 block discarded – undo
258 258
             // do not output content-length header if php is compressing output for us:
259 259
             // it will mess up measurements
260 260
             if ($phpNoSelfCompress) {
261
-                header('Content-Length: ' . (int)strlen($payload));
261
+                header('Content-Length: '.(int) strlen($payload));
262 262
             }
263 263
         } else {
264
-            error_log('XML-RPC: ' . __METHOD__ . ': http headers already sent before response is fully generated. Check for php warning or error messages');
264
+            error_log('XML-RPC: '.__METHOD__.': http headers already sent before response is fully generated. Check for php warning or error messages');
265 265
         }
266 266
 
267 267
         print $payload;
@@ -310,9 +310,9 @@  discard block
 block discarded – undo
310 310
             $numParams = count($in);
311 311
         }
312 312
         foreach ($sigs as $curSig) {
313
-            if (count($curSig) == $numParams + 1) {
313
+            if (count($curSig) == $numParams+1) {
314 314
                 $itsOK = 1;
315
-                for ($n = 0; $n < $numParams; $n++) {
315
+                for ($n = 0; $n<$numParams; $n++) {
316 316
                     if (is_object($in)) {
317 317
                         $p = $in->getParam($n);
318 318
                         if ($p->kindOf() == 'scalar') {
@@ -325,10 +325,10 @@  discard block
 block discarded – undo
325 325
                     }
326 326
 
327 327
                     // param index is $n+1, as first member of sig is return type
328
-                    if ($pt != $curSig[$n + 1] && $curSig[$n + 1] != Value::$xmlrpcValue) {
328
+                    if ($pt != $curSig[$n+1] && $curSig[$n+1] != Value::$xmlrpcValue) {
329 329
                         $itsOK = 0;
330
-                        $pno = $n + 1;
331
-                        $wanted = $curSig[$n + 1];
330
+                        $pno = $n+1;
331
+                        $wanted = $curSig[$n+1];
332 332
                         $got = $pt;
333 333
                         break;
334 334
                     }
@@ -355,10 +355,10 @@  discard block
 block discarded – undo
355 355
         // check if $_SERVER is populated: it might have been disabled via ini file
356 356
         // (this is true even when in CLI mode)
357 357
         if (count($_SERVER) == 0) {
358
-            error_log('XML-RPC: ' . __METHOD__ . ': cannot parse request headers as $_SERVER is not populated');
358
+            error_log('XML-RPC: '.__METHOD__.': cannot parse request headers as $_SERVER is not populated');
359 359
         }
360 360
 
361
-        if ($this->debug > 1) {
361
+        if ($this->debug>1) {
362 362
             if (function_exists('getallheaders')) {
363 363
                 $this->debugmsg(''); // empty line
364 364
                 foreach (getallheaders() as $name => $val) {
@@ -380,13 +380,13 @@  discard block
 block discarded – undo
380 380
                 if (function_exists('gzinflate') && in_array($contentEncoding, $this->accepted_compression)) {
381 381
                     if ($contentEncoding == 'deflate' && $degzdata = @gzuncompress($data)) {
382 382
                         $data = $degzdata;
383
-                        if ($this->debug > 1) {
384
-                            $this->debugmsg("\n+++INFLATED REQUEST+++[" . strlen($data) . " chars]+++\n" . $data . "\n+++END+++");
383
+                        if ($this->debug>1) {
384
+                            $this->debugmsg("\n+++INFLATED REQUEST+++[".strlen($data)." chars]+++\n".$data."\n+++END+++");
385 385
                         }
386 386
                     } elseif ($contentEncoding == 'gzip' && $degzdata = @gzinflate(substr($data, 10))) {
387 387
                         $data = $degzdata;
388
-                        if ($this->debug > 1) {
389
-                            $this->debugmsg("+++INFLATED REQUEST+++[" . strlen($data) . " chars]+++\n" . $data . "\n+++END+++");
388
+                        if ($this->debug>1) {
389
+                            $this->debugmsg("+++INFLATED REQUEST+++[".strlen($data)." chars]+++\n".$data."\n+++END+++");
390 390
                         }
391 391
                     } else {
392 392
                         $r = new Response(0, PhpXmlRpc::$xmlrpcerr['server_decompress_fail'], PhpXmlRpc::$xmlrpcstr['server_decompress_fail']);
@@ -470,7 +470,7 @@  discard block
 block discarded – undo
470 470
                     if (extension_loaded('mbstring')) {
471 471
                         $data = mb_convert_encoding($data, 'UTF-8', $reqEncoding);
472 472
                     } else {
473
-                        error_log('XML-RPC: ' . __METHOD__ . ': invalid charset encoding of received request: ' . $reqEncoding);
473
+                        error_log('XML-RPC: '.__METHOD__.': invalid charset encoding of received request: '.$reqEncoding);
474 474
                     }
475 475
                 }
476 476
             }
@@ -503,7 +503,7 @@  discard block
 block discarded – undo
503 503
         if (!xml_parse($parser, $data, 1)) {
504 504
             // return XML error as a faultCode
505 505
             $r = new Response(0,
506
-                PhpXmlRpc::$xmlrpcerrxml + xml_get_error_code($parser),
506
+                PhpXmlRpc::$xmlrpcerrxml+xml_get_error_code($parser),
507 507
                 sprintf('XML error: %s at line %d, column %d',
508 508
                     xml_error_string(xml_get_error_code($parser)),
509 509
                     xml_get_current_line_number($parser), xml_get_current_column_number($parser)));
@@ -512,7 +512,7 @@  discard block
 block discarded – undo
512 512
             xml_parser_free($parser);
513 513
             $r = new Response(0,
514 514
                 PhpXmlRpc::$xmlrpcerr['invalid_request'],
515
-                PhpXmlRpc::$xmlrpcstr['invalid_request'] . ' ' . $xmlRpcParser->_xh['isf_reason']);
515
+                PhpXmlRpc::$xmlrpcstr['invalid_request'].' '.$xmlRpcParser->_xh['isf_reason']);
516 516
         } else {
517 517
             xml_parser_free($parser);
518 518
             // small layering violation in favor of speed and memory usage:
@@ -520,20 +520,20 @@  discard block
 block discarded – undo
520 520
             // most common scenario (xmlrpc values type server with some methods
521 521
             // registered as phpvals) that would mean a useless encode+decode pass
522 522
             if ($this->functions_parameters_type != 'xmlrpcvals' || (isset($this->dmap[$xmlRpcParser->_xh['method']]['parameters_type']) && ($this->dmap[$xmlRpcParser->_xh['method']]['parameters_type'] == 'phpvals'))) {
523
-                if ($this->debug > 1) {
524
-                    $this->debugmsg("\n+++PARSED+++\n" . var_export($xmlRpcParser->_xh['params'], true) . "\n+++END+++");
523
+                if ($this->debug>1) {
524
+                    $this->debugmsg("\n+++PARSED+++\n".var_export($xmlRpcParser->_xh['params'], true)."\n+++END+++");
525 525
                 }
526 526
                 $r = $this->execute($xmlRpcParser->_xh['method'], $xmlRpcParser->_xh['params'], $xmlRpcParser->_xh['pt']);
527 527
             } else {
528 528
                 // build a Request object with data parsed from xml
529 529
                 $req = new Request($xmlRpcParser->_xh['method']);
530 530
                 // now add parameters in
531
-                for ($i = 0; $i < count($xmlRpcParser->_xh['params']); $i++) {
531
+                for ($i = 0; $i<count($xmlRpcParser->_xh['params']); $i++) {
532 532
                     $req->addParam($xmlRpcParser->_xh['params'][$i]);
533 533
                 }
534 534
 
535
-                if ($this->debug > 1) {
536
-                    $this->debugmsg("\n+++PARSED+++\n" . var_export($req, true) . "\n+++END+++");
535
+                if ($this->debug>1) {
536
+                    $this->debugmsg("\n+++PARSED+++\n".var_export($req, true)."\n+++END+++");
537 537
                 }
538 538
                 $r = $this->execute($req);
539 539
             }
@@ -586,7 +586,7 @@  discard block
 block discarded – undo
586 586
                 return new Response(
587 587
                     0,
588 588
                     PhpXmlRpc::$xmlrpcerr['incorrect_params'],
589
-                    PhpXmlRpc::$xmlrpcstr['incorrect_params'] . ": ${errStr}"
589
+                    PhpXmlRpc::$xmlrpcstr['incorrect_params'].": ${errStr}"
590 590
                 );
591 591
             }
592 592
         }
@@ -599,7 +599,7 @@  discard block
 block discarded – undo
599 599
 
600 600
         if (is_array($func)) {
601 601
             if (is_object($func[0])) {
602
-                $funcName = get_class($func[0]) . '->' . $func[1];
602
+                $funcName = get_class($func[0]).'->'.$func[1];
603 603
             } else {
604 604
                 $funcName = implode('::', $func);
605 605
             }
@@ -611,17 +611,17 @@  discard block
 block discarded – undo
611 611
 
612 612
         // verify that function to be invoked is in fact callable
613 613
         if (!is_callable($func)) {
614
-            error_log("XML-RPC: " . __METHOD__ . ": function '$funcName' registered as method handler is not callable");
614
+            error_log("XML-RPC: ".__METHOD__.": function '$funcName' registered as method handler is not callable");
615 615
             return new Response(
616 616
                 0,
617 617
                 PhpXmlRpc::$xmlrpcerr['server_error'],
618
-                PhpXmlRpc::$xmlrpcstr['server_error'] . ": no function matches method"
618
+                PhpXmlRpc::$xmlrpcstr['server_error'].": no function matches method"
619 619
             );
620 620
         }
621 621
 
622 622
         // If debug level is 3, we should catch all errors generated during
623 623
         // processing of user function, and log them as part of response
624
-        if ($this->debug > 2) {
624
+        if ($this->debug>2) {
625 625
             self::$_xmlrpcs_prev_ehandler = set_error_handler(array('\PhpXmlRpc\Server', '_xmlrpcs_errorHandler'));
626 626
         }
627 627
 
@@ -634,14 +634,14 @@  discard block
 block discarded – undo
634 634
                     $r = call_user_func($func, $req);
635 635
                 }
636 636
                 if (!is_a($r, 'PhpXmlRpc\Response')) {
637
-                    error_log("XML-RPC: " . __METHOD__ . ": function '$funcName' registered as method handler does not return an xmlrpc response object but a " . gettype($r));
637
+                    error_log("XML-RPC: ".__METHOD__.": function '$funcName' registered as method handler does not return an xmlrpc response object but a ".gettype($r));
638 638
                     if (is_a($r, 'PhpXmlRpc\Value')) {
639 639
                         $r = new Response($r);
640 640
                     } else {
641 641
                         $r = new Response(
642 642
                             0,
643 643
                             PhpXmlRpc::$xmlrpcerr['server_error'],
644
-                            PhpXmlRpc::$xmlrpcstr['server_error'] . ": function does not return xmlrpc response object"
644
+                            PhpXmlRpc::$xmlrpcstr['server_error'].": function does not return xmlrpc response object"
645 645
                         );
646 646
                     }
647 647
                 }
@@ -657,7 +657,7 @@  discard block
 block discarded – undo
657 657
                         // mimic EPI behaviour: if we get an array that looks like an error, make it
658 658
                         // an eror response
659 659
                         if (is_array($r) && array_key_exists('faultCode', $r) && array_key_exists('faultString', $r)) {
660
-                            $r = new Response(0, (integer)$r['faultCode'], (string)$r['faultString']);
660
+                            $r = new Response(0, (integer) $r['faultCode'], (string) $r['faultString']);
661 661
                         } else {
662 662
                             // functions using EPI api should NOT return resp objects,
663 663
                             // so make sure we encode the return type correctly
@@ -679,7 +679,7 @@  discard block
 block discarded – undo
679 679
             // in the called function, we wrap it in a proper error-response
680 680
             switch ($this->exception_handling) {
681 681
                 case 2:
682
-                    if ($this->debug > 2) {
682
+                    if ($this->debug>2) {
683 683
                         if (self::$_xmlrpcs_prev_ehandler) {
684 684
                             set_error_handler(self::$_xmlrpcs_prev_ehandler);
685 685
                         } else {
@@ -695,7 +695,7 @@  discard block
 block discarded – undo
695 695
                     $r = new Response(0, PhpXmlRpc::$xmlrpcerr['server_error'], PhpXmlRpc::$xmlrpcstr['server_error']);
696 696
             }
697 697
         }
698
-        if ($this->debug > 2) {
698
+        if ($this->debug>2) {
699 699
             // note: restore the error handler we found before calling the
700 700
             // user func, even if it has been changed inside the func itself
701 701
             if (self::$_xmlrpcs_prev_ehandler) {
@@ -715,7 +715,7 @@  discard block
 block discarded – undo
715 715
      */
716 716
     protected function debugmsg($string)
717 717
     {
718
-        $this->debug_info .= $string . "\n";
718
+        $this->debug_info .= $string."\n";
719 719
     }
720 720
 
721 721
     /**
@@ -725,9 +725,9 @@  discard block
 block discarded – undo
725 725
     protected function xml_header($charsetEncoding = '')
726 726
     {
727 727
         if ($charsetEncoding != '') {
728
-            return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\"?" . ">\n";
728
+            return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\"?".">\n";
729 729
         } else {
730
-            return "<?xml version=\"1.0\"?" . ">\n";
730
+            return "<?xml version=\"1.0\"?".">\n";
731 731
         }
732 732
     }
733 733
 
@@ -935,12 +935,12 @@  discard block
 block discarded – undo
935 935
         }
936 936
 
937 937
         $req = new Request($methName->scalarval());
938
-        foreach($params as $i => $param) {
938
+        foreach ($params as $i => $param) {
939 939
             if (!$req->addParam($param)) {
940 940
                 $i++; // for error message, we count params from 1
941 941
                 return static::_xmlrpcs_multicall_error(new Response(0,
942 942
                     PhpXmlRpc::$xmlrpcerr['incorrect_params'],
943
-                    PhpXmlRpc::$xmlrpcstr['incorrect_params'] . ": probable xml error in param " . $i));
943
+                    PhpXmlRpc::$xmlrpcstr['incorrect_params'].": probable xml error in param ".$i));
944 944
             }
945 945
         }
946 946
 
@@ -998,12 +998,12 @@  discard block
 block discarded – undo
998 998
         // let accept a plain list of php parameters, beside a single xmlrpc msg object
999 999
         if (is_object($req)) {
1000 1000
             $calls = $req->getParam(0);
1001
-            foreach($calls as $call) {
1001
+            foreach ($calls as $call) {
1002 1002
                 $result[] = static::_xmlrpcs_multicall_do_call($server, $call);
1003 1003
             }
1004 1004
         } else {
1005 1005
             $numCalls = count($req);
1006
-            for ($i = 0; $i < $numCalls; $i++) {
1006
+            for ($i = 0; $i<$numCalls; $i++) {
1007 1007
                 $result[$i] = static::_xmlrpcs_multicall_do_call_phpvals($server, $req[$i]);
1008 1008
             }
1009 1009
         }
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
@@ -22,12 +22,12 @@  discard block
 block discarded – undo
22 22
 
23 23
         // read chunk-size, chunk-extension (if any) and crlf
24 24
         // get the position of the linebreak
25
-        $chunkEnd = strpos($buffer, "\r\n") + 2;
25
+        $chunkEnd = strpos($buffer, "\r\n")+2;
26 26
         $temp = substr($buffer, 0, $chunkEnd);
27 27
         $chunkSize = hexdec(trim($temp));
28 28
         $chunkStart = $chunkEnd;
29
-        while ($chunkSize > 0) {
30
-            $chunkEnd = strpos($buffer, "\r\n", $chunkStart + $chunkSize);
29
+        while ($chunkSize>0) {
30
+            $chunkEnd = strpos($buffer, "\r\n", $chunkStart+$chunkSize);
31 31
 
32 32
             // just in case we got a broken connection
33 33
             if ($chunkEnd == false) {
@@ -39,19 +39,19 @@  discard block
 block discarded – undo
39 39
             }
40 40
 
41 41
             // read chunk-data and crlf
42
-            $chunk = substr($buffer, $chunkStart, $chunkEnd - $chunkStart);
42
+            $chunk = substr($buffer, $chunkStart, $chunkEnd-$chunkStart);
43 43
             // append chunk-data to entity-body
44 44
             $new .= $chunk;
45 45
             // length := length + chunk-size
46 46
             $length += strlen($chunk);
47 47
             // read chunk-size and crlf
48
-            $chunkStart = $chunkEnd + 2;
48
+            $chunkStart = $chunkEnd+2;
49 49
 
50
-            $chunkEnd = strpos($buffer, "\r\n", $chunkStart) + 2;
50
+            $chunkEnd = strpos($buffer, "\r\n", $chunkStart)+2;
51 51
             if ($chunkEnd == false) {
52 52
                 break; //just in case we got a broken connection
53 53
             }
54
-            $temp = substr($buffer, $chunkStart, $chunkEnd - $chunkStart);
54
+            $temp = substr($buffer, $chunkStart, $chunkEnd-$chunkStart);
55 55
             $chunkSize = hexdec(trim($temp));
56 56
             $chunkStart = $chunkEnd;
57 57
         }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      * @return array with keys 'headers' and 'cookies'
69 69
      * @throws \Exception
70 70
      */
71
-    public function parseResponseHeaders(&$data, $headersProcessed = false, $debug=0)
71
+    public function parseResponseHeaders(&$data, $headersProcessed = false, $debug = 0)
72 72
     {
73 73
         $httpResponse = array('raw_data' => $data, 'headers'=> array(), 'cookies' => array());
74 74
 
@@ -78,11 +78,11 @@  discard block
 block discarded – undo
78 78
             // (even though it is not valid http)
79 79
             $pos = strpos($data, "\r\n\r\n");
80 80
             if ($pos || is_int($pos)) {
81
-                $bd = $pos + 4;
81
+                $bd = $pos+4;
82 82
             } else {
83 83
                 $pos = strpos($data, "\n\n");
84 84
                 if ($pos || is_int($pos)) {
85
-                    $bd = $pos + 2;
85
+                    $bd = $pos+2;
86 86
                 } else {
87 87
                     // No separation between response headers and body: fault?
88 88
                     $bd = 0;
@@ -93,8 +93,8 @@  discard block
 block discarded – undo
93 93
                 // maybe we could take them into account, too?
94 94
                 $data = substr($data, $bd);
95 95
             } else {
96
-                error_log('XML-RPC: ' . __METHOD__ . ': HTTPS via proxy error, tunnel connection possibly failed');
97
-                throw new \Exception(PhpXmlRpc::$xmlrpcstr['http_error'] . ' (HTTPS via proxy error, tunnel connection possibly failed)', PhpXmlRpc::$xmlrpcerr['http_error']);
96
+                error_log('XML-RPC: '.__METHOD__.': HTTPS via proxy error, tunnel connection possibly failed');
97
+                throw new \Exception(PhpXmlRpc::$xmlrpcstr['http_error'].' (HTTPS via proxy error, tunnel connection possibly failed)', PhpXmlRpc::$xmlrpcerr['http_error']);
98 98
             }
99 99
         }
100 100
 
@@ -111,20 +111,20 @@  discard block
 block discarded – undo
111 111
             $data = substr($data, $pos);
112 112
         }
113 113
         if (!preg_match('/^HTTP\/[0-9.]+ 200 /', $data)) {
114
-            $errstr = substr($data, 0, strpos($data, "\n") - 1);
115
-            error_log('XML-RPC: ' . __METHOD__ . ': HTTP error, got response: ' . $errstr);
116
-            throw new \Exception(PhpXmlRpc::$xmlrpcstr['http_error'] . ' (' . $errstr . ')', PhpXmlRpc::$xmlrpcerr['http_error']);
114
+            $errstr = substr($data, 0, strpos($data, "\n")-1);
115
+            error_log('XML-RPC: '.__METHOD__.': HTTP error, got response: '.$errstr);
116
+            throw new \Exception(PhpXmlRpc::$xmlrpcstr['http_error'].' ('.$errstr.')', PhpXmlRpc::$xmlrpcerr['http_error']);
117 117
         }
118 118
 
119 119
         // be tolerant to usage of \n instead of \r\n to separate headers and data
120 120
         // (even though it is not valid http)
121 121
         $pos = strpos($data, "\r\n\r\n");
122 122
         if ($pos || is_int($pos)) {
123
-            $bd = $pos + 4;
123
+            $bd = $pos+4;
124 124
         } else {
125 125
             $pos = strpos($data, "\n\n");
126 126
             if ($pos || is_int($pos)) {
127
-                $bd = $pos + 2;
127
+                $bd = $pos+2;
128 128
             } else {
129 129
                 // No separation between response headers and body: fault?
130 130
                 // we could take some action here instead of going on...
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
         while (list(, $line) = @each($ar)) {
137 137
             // take care of multi-line headers and cookies
138 138
             $arr = explode(':', $line, 2);
139
-            if (count($arr) > 1) {
139
+            if (count($arr)>1) {
140 140
                 $headerName = strtolower(trim($arr[0]));
141 141
                 /// @todo some other headers (the ones that allow a CSV list of values)
142 142
                 /// do allow many values to be passed using multiple header lines.
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
                         // glue together all received cookies, using a comma to separate them
155 155
                         // (same as php does with getallheaders())
156 156
                         if (isset($httpResponse['headers'][$headerName])) {
157
-                            $httpResponse['headers'][$headerName] .= ', ' . trim($cookie);
157
+                            $httpResponse['headers'][$headerName] .= ', '.trim($cookie);
158 158
                         } else {
159 159
                             $httpResponse['headers'][$headerName] = trim($cookie);
160 160
                         }
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
                 }
184 184
             } elseif (isset($headerName)) {
185 185
                 /// @todo version1 cookies might span multiple lines, thus breaking the parsing above
186
-                $httpResponse['headers'][$headerName] .= ' ' . trim($line);
186
+                $httpResponse['headers'][$headerName] .= ' '.trim($line);
187 187
             }
188 188
         }
189 189
 
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
             // Decode chunked encoding sent by http 1.1 servers
207 207
             if (isset($httpResponse['headers']['transfer-encoding']) && $httpResponse['headers']['transfer-encoding'] == 'chunked') {
208 208
                 if (!$data = Http::decodeChunked($data)) {
209
-                    error_log('XML-RPC: ' . __METHOD__ . ': errors occurred when trying to rebuild the chunked data received from server');
209
+                    error_log('XML-RPC: '.__METHOD__.': errors occurred when trying to rebuild the chunked data received from server');
210 210
                     throw new \Exception(PhpXmlRpc::$xmlrpcstr['dechunk_fail'], PhpXmlRpc::$xmlrpcerr['dechunk_fail']);
211 211
                 }
212 212
             }
@@ -221,19 +221,19 @@  discard block
 block discarded – undo
221 221
                         if ($httpResponse['headers']['content-encoding'] == 'deflate' && $degzdata = @gzuncompress($data)) {
222 222
                             $data = $degzdata;
223 223
                             if ($debug) {
224
-                                Logger::instance()->debugMessage("---INFLATED RESPONSE---[" . strlen($data) . " chars]---\n$data\n---END---");
224
+                                Logger::instance()->debugMessage("---INFLATED RESPONSE---[".strlen($data)." chars]---\n$data\n---END---");
225 225
                             }
226 226
                         } elseif ($httpResponse['headers']['content-encoding'] == 'gzip' && $degzdata = @gzinflate(substr($data, 10))) {
227 227
                             $data = $degzdata;
228 228
                             if ($debug) {
229
-                                Logger::instance()->debugMessage("---INFLATED RESPONSE---[" . strlen($data) . " chars]---\n$data\n---END---");
229
+                                Logger::instance()->debugMessage("---INFLATED RESPONSE---[".strlen($data)." chars]---\n$data\n---END---");
230 230
                             }
231 231
                         } else {
232
-                            error_log('XML-RPC: ' . __METHOD__ . ': errors occurred when trying to decode the deflated data received from server');
232
+                            error_log('XML-RPC: '.__METHOD__.': errors occurred when trying to decode the deflated data received from server');
233 233
                             throw new \Exception(PhpXmlRpc::$xmlrpcstr['decompress_fail'], PhpXmlRpc::$xmlrpcerr['decompress_fail']);
234 234
                         }
235 235
                     } else {
236
-                        error_log('XML-RPC: ' . __METHOD__ . ': the server sent deflated data. Your php install must have the Zlib extension compiled in to support this.');
236
+                        error_log('XML-RPC: '.__METHOD__.': the server sent deflated data. Your php install must have the Zlib extension compiled in to support this.');
237 237
                         throw new \Exception(PhpXmlRpc::$xmlrpcstr['cannot_decompress'], PhpXmlRpc::$xmlrpcerr['cannot_decompress']);
238 238
                     }
239 239
                 }
Please login to merge, or discard this patch.
src/Helper/Charset.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -51,12 +51,12 @@  discard block
 block discarded – undo
51 51
 
52 52
     private function __construct()
53 53
     {
54
-        for ($i = 0; $i < 32; $i++) {
54
+        for ($i = 0; $i<32; $i++) {
55 55
             $this->xml_iso88591_Entities["in"][] = chr($i);
56 56
             $this->xml_iso88591_Entities["out"][] = "&#{$i};";
57 57
         }
58 58
 
59
-        for ($i = 160; $i < 256; $i++) {
59
+        for ($i = 160; $i<256; $i++) {
60 60
             $this->xml_iso88591_Entities["in"][] = chr($i);
61 61
             $this->xml_iso88591_Entities["out"][] = "&#{$i};";
62 62
         }
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
             $srcEncoding = PhpXmlRpc::$xmlrpc_internalencoding;
95 95
         }
96 96
 
97
-        switch (strtoupper($srcEncoding . '_' . $destEncoding)) {
97
+        switch (strtoupper($srcEncoding.'_'.$destEncoding)) {
98 98
             case 'ISO-8859-1_':
99 99
             case 'ISO-8859-1_US-ASCII':
100 100
                 $escapedData = str_replace(array('&', '"', "'", '<', '>'), array('&amp;', '&quot;', '&apos;', '&lt;', '&gt;'), $data);
@@ -119,13 +119,13 @@  discard block
 block discarded – undo
119 119
                 // NB: this will choke on invalid UTF-8, going most likely beyond EOF
120 120
                 $escapedData = '';
121 121
                 // be kind to users creating string xmlrpc values out of different php types
122
-                $data = (string)$data;
122
+                $data = (string) $data;
123 123
                 $ns = strlen($data);
124
-                for ($nn = 0; $nn < $ns; $nn++) {
124
+                for ($nn = 0; $nn<$ns; $nn++) {
125 125
                     $ch = $data[$nn];
126 126
                     $ii = ord($ch);
127 127
                     //1 7 0bbbbbbb (127)
128
-                    if ($ii < 128) {
128
+                    if ($ii<128) {
129 129
                         /// @todo shall we replace this with a (supposedly) faster str_replace?
130 130
                         switch ($ii) {
131 131
                             case 34:
@@ -149,33 +149,33 @@  discard block
 block discarded – undo
149 149
                     } //2 11 110bbbbb 10bbbbbb (2047)
150 150
                     elseif ($ii >> 5 == 6) {
151 151
                         $b1 = ($ii & 31);
152
-                        $ii = ord($data[$nn + 1]);
152
+                        $ii = ord($data[$nn+1]);
153 153
                         $b2 = ($ii & 63);
154
-                        $ii = ($b1 * 64) + $b2;
154
+                        $ii = ($b1 * 64)+$b2;
155 155
                         $ent = sprintf('&#%d;', $ii);
156 156
                         $escapedData .= $ent;
157 157
                         $nn += 1;
158 158
                     } //3 16 1110bbbb 10bbbbbb 10bbbbbb
159 159
                     elseif ($ii >> 4 == 14) {
160 160
                         $b1 = ($ii & 15);
161
-                        $ii = ord($data[$nn + 1]);
161
+                        $ii = ord($data[$nn+1]);
162 162
                         $b2 = ($ii & 63);
163
-                        $ii = ord($data[$nn + 2]);
163
+                        $ii = ord($data[$nn+2]);
164 164
                         $b3 = ($ii & 63);
165
-                        $ii = ((($b1 * 64) + $b2) * 64) + $b3;
165
+                        $ii = ((($b1 * 64)+$b2) * 64)+$b3;
166 166
                         $ent = sprintf('&#%d;', $ii);
167 167
                         $escapedData .= $ent;
168 168
                         $nn += 2;
169 169
                     } //4 21 11110bbb 10bbbbbb 10bbbbbb 10bbbbbb
170 170
                     elseif ($ii >> 3 == 30) {
171 171
                         $b1 = ($ii & 7);
172
-                        $ii = ord($data[$nn + 1]);
172
+                        $ii = ord($data[$nn+1]);
173 173
                         $b2 = ($ii & 63);
174
-                        $ii = ord($data[$nn + 2]);
174
+                        $ii = ord($data[$nn+2]);
175 175
                         $b3 = ($ii & 63);
176
-                        $ii = ord($data[$nn + 3]);
176
+                        $ii = ord($data[$nn+3]);
177 177
                         $b4 = ($ii & 63);
178
-                        $ii = ((((($b1 * 64) + $b2) * 64) + $b3) * 64) + $b4;
178
+                        $ii = ((((($b1 * 64)+$b2) * 64)+$b3) * 64)+$b4;
179 179
                         $ent = sprintf('&#%d;', $ii);
180 180
                         $escapedData .= $ent;
181 181
                         $nn += 3;
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
             */
204 204
             default:
205 205
                 $escapedData = '';
206
-                error_log('XML-RPC: ' . __METHOD__ . ": Converting from $srcEncoding to $destEncoding: not supported...");
206
+                error_log('XML-RPC: '.__METHOD__.": Converting from $srcEncoding to $destEncoding: not supported...");
207 207
         }
208 208
 
209 209
         return $escapedData;
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
             case 'iso88591':
256 256
                 return $this->xml_iso88591_Entities;
257 257
             default:
258
-                throw new \Exception('Unsupported charset: ' . $charset);
258
+                throw new \Exception('Unsupported charset: '.$charset);
259 259
         }
260 260
     }
261 261
 
Please login to merge, or discard this patch.
src/Helper/Date.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
                 // of PHP
33 33
                 $t = gmstrftime("%Y%m%dT%H:%M:%S", $timet);
34 34
             } else {
35
-                $t = strftime("%Y%m%dT%H:%M:%S", $timet - date('Z'));
35
+                $t = strftime("%Y%m%dT%H:%M:%S", $timet-date('Z'));
36 36
             }
37 37
         }
38 38
 
Please login to merge, or discard this patch.
src/Helper/Logger.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * @param string $message
29 29
      * @param string $encoding
30 30
      */
31
-    public function debugMessage($message, $encoding=null)
31
+    public function debugMessage($message, $encoding = null)
32 32
     {
33 33
         // US-ASCII is a warning for PHP and a fatal for HHVM
34 34
         if ($encoding == 'US-ASCII') {
Please login to merge, or discard this patch.
src/Helper/XMLParser.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     public function xmlrpc_se($parser, $name, $attrs, $acceptSingleVals = false)
65 65
     {
66 66
         // if invalid xmlrpc already detected, skip all processing
67
-        if ($this->_xh['isf'] < 2) {
67
+        if ($this->_xh['isf']<2) {
68 68
             // check for correct element nesting
69 69
             // top level element can only be of 2 types
70 70
             /// @todo optimization creep: save this check into a bool variable, instead of using count() every time:
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
                     $this->_xh['isf'] = 1;
160 160
                     break;
161 161
                 case 'MEMBER':
162
-                    $this->_xh['valuestack'][count($this->_xh['valuestack']) - 1]['name'] = ''; // set member name to null, in case we do not find in the xml later on
162
+                    $this->_xh['valuestack'][count($this->_xh['valuestack'])-1]['name'] = ''; // set member name to null, in case we do not find in the xml later on
163 163
                     //$this->_xh['ac']='';
164 164
                 // Drop trough intentionally
165 165
                 case 'PARAM':
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
      */
212 212
     public function xmlrpc_ee($parser, $name, $rebuildXmlrpcvals = true)
213 213
     {
214
-        if ($this->_xh['isf'] < 2) {
214
+        if ($this->_xh['isf']<2) {
215 215
             // push this element name from stack
216 216
             // NB: if XML validates, correct opening/closing is guaranteed and
217 217
             // we do not have to check for $name == $currElem.
@@ -237,8 +237,8 @@  discard block
 block discarded – undo
237 237
                         // check if we are inside an array or struct:
238 238
                         // if value just built is inside an array, let's move it into array on the stack
239 239
                         $vscount = count($this->_xh['valuestack']);
240
-                        if ($vscount && $this->_xh['valuestack'][$vscount - 1]['type'] == 'ARRAY') {
241
-                            $this->_xh['valuestack'][$vscount - 1]['values'][] = $temp;
240
+                        if ($vscount && $this->_xh['valuestack'][$vscount-1]['type'] == 'ARRAY') {
241
+                            $this->_xh['valuestack'][$vscount-1]['values'][] = $temp;
242 242
                         } else {
243 243
                             $this->_xh['value'] = $temp;
244 244
                         }
@@ -252,8 +252,8 @@  discard block
 block discarded – undo
252 252
                         // check if we are inside an array or struct:
253 253
                         // if value just built is inside an array, let's move it into array on the stack
254 254
                         $vscount = count($this->_xh['valuestack']);
255
-                        if ($vscount && $this->_xh['valuestack'][$vscount - 1]['type'] == 'ARRAY') {
256
-                            $this->_xh['valuestack'][$vscount - 1]['values'][] = $this->_xh['value'];
255
+                        if ($vscount && $this->_xh['valuestack'][$vscount-1]['type'] == 'ARRAY') {
256
+                            $this->_xh['valuestack'][$vscount-1]['values'][] = $this->_xh['value'];
257 257
                         }
258 258
                     }
259 259
                     break;
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
                         $this->_xh['value'] = $this->_xh['ac'];
272 272
                     } elseif ($name == 'DATETIME.ISO8601') {
273 273
                         if (!preg_match('/^[0-9]{8}T[0-9]{2}:[0-9]{2}:[0-9]{2}$/', $this->_xh['ac'])) {
274
-                            error_log('XML-RPC: ' . __METHOD__ . ': invalid value received in DATETIME: ' . $this->_xh['ac']);
274
+                            error_log('XML-RPC: '.__METHOD__.': invalid value received in DATETIME: '.$this->_xh['ac']);
275 275
                         }
276 276
                         $this->_xh['vt'] = Value::$xmlrpcDateTime;
277 277
                         $this->_xh['value'] = $this->_xh['ac'];
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
                         } else {
291 291
                             // log if receiving something strange, even though we set the value to false anyway
292 292
                             if ($this->_xh['ac'] != '0' && strcasecmp($this->_xh['ac'], 'false') != 0) {
293
-                                error_log('XML-RPC: ' . __METHOD__ . ': invalid value received in BOOLEAN: ' . $this->_xh['ac']);
293
+                                error_log('XML-RPC: '.__METHOD__.': invalid value received in BOOLEAN: '.$this->_xh['ac']);
294 294
                             }
295 295
                             $this->_xh['value'] = false;
296 296
                         }
@@ -300,37 +300,37 @@  discard block
 block discarded – undo
300 300
                         // NOTE: regexp could be much stricter than this...
301 301
                         if (!preg_match('/^[+-eE0123456789 \t.]+$/', $this->_xh['ac'])) {
302 302
                             /// @todo: find a better way of throwing an error than this!
303
-                            error_log('XML-RPC: ' . __METHOD__ . ': non numeric value received in DOUBLE: ' . $this->_xh['ac']);
303
+                            error_log('XML-RPC: '.__METHOD__.': non numeric value received in DOUBLE: '.$this->_xh['ac']);
304 304
                             $this->_xh['value'] = 'ERROR_NON_NUMERIC_FOUND';
305 305
                         } else {
306 306
                             // it's ok, add it on
307
-                            $this->_xh['value'] = (double)$this->_xh['ac'];
307
+                            $this->_xh['value'] = (double) $this->_xh['ac'];
308 308
                         }
309 309
                     } else {
310 310
                         // we have an I4/INT
311 311
                         // we must check that only 0123456789-<space> are characters here
312 312
                         if (!preg_match('/^[+-]?[0123456789 \t]+$/', $this->_xh['ac'])) {
313 313
                             /// @todo find a better way of throwing an error than this!
314
-                            error_log('XML-RPC: ' . __METHOD__ . ': non numeric value received in INT: ' . $this->_xh['ac']);
314
+                            error_log('XML-RPC: '.__METHOD__.': non numeric value received in INT: '.$this->_xh['ac']);
315 315
                             $this->_xh['value'] = 'ERROR_NON_NUMERIC_FOUND';
316 316
                         } else {
317 317
                             // it's ok, add it on
318
-                            $this->_xh['value'] = (int)$this->_xh['ac'];
318
+                            $this->_xh['value'] = (int) $this->_xh['ac'];
319 319
                         }
320 320
                     }
321 321
                     $this->_xh['lv'] = 3; // indicate we've found a value
322 322
                     break;
323 323
                 case 'NAME':
324
-                    $this->_xh['valuestack'][count($this->_xh['valuestack']) - 1]['name'] = $this->_xh['ac'];
324
+                    $this->_xh['valuestack'][count($this->_xh['valuestack'])-1]['name'] = $this->_xh['ac'];
325 325
                     break;
326 326
                 case 'MEMBER':
327 327
                     // add to array in the stack the last element built,
328 328
                     // unless no VALUE was found
329 329
                     if ($this->_xh['vt']) {
330 330
                         $vscount = count($this->_xh['valuestack']);
331
-                        $this->_xh['valuestack'][$vscount - 1]['values'][$this->_xh['valuestack'][$vscount - 1]['name']] = $this->_xh['value'];
331
+                        $this->_xh['valuestack'][$vscount-1]['values'][$this->_xh['valuestack'][$vscount-1]['name']] = $this->_xh['value'];
332 332
                     } else {
333
-                        error_log('XML-RPC: ' . __METHOD__ . ': missing VALUE inside STRUCT in received xml');
333
+                        error_log('XML-RPC: '.__METHOD__.': missing VALUE inside STRUCT in received xml');
334 334
                     }
335 335
                     break;
336 336
                 case 'DATA':
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
                         $this->_xh['params'][] = $this->_xh['value'];
354 354
                         $this->_xh['pt'][] = $this->_xh['vt'];
355 355
                     } else {
356
-                        error_log('XML-RPC: ' . __METHOD__ . ': missing VALUE inside PARAM in received xml');
356
+                        error_log('XML-RPC: '.__METHOD__.': missing VALUE inside PARAM in received xml');
357 357
                     }
358 358
                     break;
359 359
                 case 'METHODNAME':
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
     public function xmlrpc_cd($parser, $data)
396 396
     {
397 397
         // skip processing if xml fault already detected
398
-        if ($this->_xh['isf'] < 2) {
398
+        if ($this->_xh['isf']<2) {
399 399
             // "lookforvalue==3" means that we've found an entire value
400 400
             // and should discard any further character data
401 401
             if ($this->_xh['lv'] != 3) {
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
     public function xmlrpc_dh($parser, $data)
412 412
     {
413 413
         // skip processing if xml fault already detected
414
-        if ($this->_xh['isf'] < 2) {
414
+        if ($this->_xh['isf']<2) {
415 415
             if (substr($data, 0, 1) == '&' && substr($data, -1, 1) == ';') {
416 416
                 $this->_xh['ac'] .= $data;
417 417
             }
@@ -482,8 +482,8 @@  discard block
 block discarded – undo
482 482
         // Details:
483 483
         // SPACE:         (#x20 | #x9 | #xD | #xA)+ === [ \x9\xD\xA]+
484 484
         // EQ:            SPACE?=SPACE? === [ \x9\xD\xA]*=[ \x9\xD\xA]*
485
-        if (preg_match('/^<\?xml\s+version\s*=\s*' . "((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))" .
486
-            '\s+encoding\s*=\s*' . "((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/",
485
+        if (preg_match('/^<\?xml\s+version\s*=\s*'."((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))".
486
+            '\s+encoding\s*=\s*'."((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/",
487 487
             $xmlChunk, $matches)) {
488 488
             return strtoupper(substr($matches[2], 1, -1));
489 489
         }
@@ -501,7 +501,7 @@  discard block
 block discarded – undo
501 501
             // NB: mb_detect likes to call it ascii, xml parser likes to call it US_ASCII...
502 502
             // IANA also likes better US-ASCII, so go with it
503 503
             if ($enc == 'ASCII') {
504
-                $enc = 'US-' . $enc;
504
+                $enc = 'US-'.$enc;
505 505
             }
506 506
 
507 507
             return $enc;
@@ -536,8 +536,8 @@  discard block
 block discarded – undo
536 536
         // Details:
537 537
         // SPACE:         (#x20 | #x9 | #xD | #xA)+ === [ \x9\xD\xA]+
538 538
         // EQ:            SPACE?=SPACE? === [ \x9\xD\xA]*=[ \x9\xD\xA]*
539
-        if (preg_match('/^<\?xml\s+version\s*=\s*' . "((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))" .
540
-            '\s+encoding\s*=\s*' . "((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/",
539
+        if (preg_match('/^<\?xml\s+version\s*=\s*'."((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))".
540
+            '\s+encoding\s*=\s*'."((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/",
541 541
             $xmlChunk, $matches)) {
542 542
             return true;
543 543
         }
Please login to merge, or discard this patch.
tests/1ParsingBugsTest.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@  discard block
 block discarded – undo
2 2
 /**
3 3
  * NB: do not let your IDE fool you. The correct encoding for this file is NOT UTF8.
4 4
  */
5
-include_once __DIR__ . '/../lib/xmlrpc.inc';
6
-include_once __DIR__ . '/../lib/xmlrpcs.inc';
5
+include_once __DIR__.'/../lib/xmlrpc.inc';
6
+include_once __DIR__.'/../lib/xmlrpcs.inc';
7 7
 
8
-include_once __DIR__ . '/parse_args.php';
8
+include_once __DIR__.'/parse_args.php';
9 9
 
10 10
 /**
11 11
  * Tests involving parsing of xml and handling of xmlrpc values
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
     public function testUnicodeInMemberName()
63 63
     {
64
-        $str = "G" . chr(252) . "nter, El" . chr(232) . "ne";
64
+        $str = "G".chr(252)."nter, El".chr(232)."ne";
65 65
         $v = array($str => new xmlrpcval(1));
66 66
         $r = new xmlrpcresp(new xmlrpcval($v, 'struct'));
67 67
         $r = $r->serialize();
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 <!-- $Id -->
79 79
 <!-- found by G. giunta, covers what happens when lib receives
80 80
   UTF8 chars in response text and comments -->
81
-<!-- ' . chr(224) . chr(252) . chr(232) . '&#224;&#252;&#232; -->
81
+<!-- ' . chr(224).chr(252).chr(232).'&#224;&#252;&#232; -->
82 82
 <methodResponse>
83 83
 <fault>
84 84
 <value>
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 </member>
90 90
 <member>
91 91
 <name>faultString</name>
92
-<value><string>' . chr(224) . chr(252) . chr(232) . '&#224;&#252;&#232;</string></value>
92
+<value><string>' . chr(224).chr(252).chr(232).'&#224;&#252;&#232;</string></value>
93 93
 </member>
94 94
 </struct>
95 95
 </value>
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         $m = $this->newMsg('dummy');
99 99
         $r = $m->parseResponse($response);
100 100
         $v = $r->faultString();
101
-        $this->assertEquals(chr(224) . chr(252) . chr(232) . chr(224) . chr(252) . chr(232), $v);
101
+        $this->assertEquals(chr(224).chr(252).chr(232).chr(224).chr(252).chr(232), $v);
102 102
     }
103 103
 
104 104
     public function testValidNumbers()
@@ -445,11 +445,11 @@  discard block
 block discarded – undo
445 445
 
446 446
     public function testUTF8Response()
447 447
     {
448
-        $string = chr(224) . chr(252) . chr(232);
448
+        $string = chr(224).chr(252).chr(232);
449 449
 
450 450
         $s = $this->newMsg('dummy');
451
-        $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>
452
-<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>
451
+        $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>
452
+<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>
453 453
 ';
454 454
         $r = $s->parseResponse($f, false, 'phpvals');
455 455
         $v = $r->value();
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
         $this->assertEquals($string, $v);
458 458
 
459 459
         $f = '<?xml version="1.0" encoding="UTF-8"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member>
460
-<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>
460
+<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>
461 461
 ';
462 462
         $r = $s->parseResponse($f, false, 'phpvals');
463 463
         $v = $r->value();
@@ -472,11 +472,11 @@  discard block
 block discarded – undo
472 472
 
473 473
     public function testLatin1Response()
474 474
     {
475
-        $string = chr(224) . chr(252) . chr(232);
475
+        $string = chr(224).chr(252).chr(232);
476 476
 
477 477
         $s = $this->newMsg('dummy');
478
-        $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>
479
-<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>
478
+        $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>
479
+<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>
480 480
 ';
481 481
         $r = $s->parseResponse($f, false, 'phpvals');
482 482
         $v = $r->value();
@@ -484,7 +484,7 @@  discard block
 block discarded – undo
484 484
         $this->assertEquals($string, $v);
485 485
 
486 486
         $f = '<?xml version="1.0" encoding="ISO-8859-1"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member>
487
-<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>
487
+<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>
488 488
 ';
489 489
         $r = $s->parseResponse($f, false, 'phpvals');
490 490
         $v = $r->value();
@@ -578,7 +578,7 @@  discard block
 block discarded – undo
578 578
         $v1 = new xmlrpcval(array(new xmlrpcval('one'), new xmlrpcval('two')), 'array');
579 579
         $this->assertequals(1, count($v1));
580 580
         $out = array('me' => array(), 'mytype' => 2, '_php_class' => null);
581
-        foreach($v1 as $key => $val)
581
+        foreach ($v1 as $key => $val)
582 582
         {
583 583
             $expected = each($out);
584 584
             $this->assertequals($expected['key'], $key);
@@ -592,7 +592,7 @@  discard block
 block discarded – undo
592 592
         $v2 = new \PhpXmlRpc\Value(array(new \PhpXmlRpc\Value('one'), new \PhpXmlRpc\Value('two')), 'array');
593 593
         $this->assertequals(2, count($v2));
594 594
         $out = array(0 => 'object', 1 => 'object');
595
-        foreach($v2 as $key => $val)
595
+        foreach ($v2 as $key => $val)
596 596
         {
597 597
             $expected = each($out);
598 598
             $this->assertequals($expected['key'], $key);
Please login to merge, or discard this patch.