@@ -463,7 +463,7 @@ |
||
463 | 463 | public function addToMap($methodName, $function, $sig = null, $doc = false, $sigDoc = false, $parametersType = false, |
464 | 464 | $exceptionHandling = false) |
465 | 465 | { |
466 | - $this->add_to_map($methodName, $function, $sig, $doc, $sigDoc, $parametersType, $exceptionHandling); |
|
466 | + $this->add_to_map($methodName, $function, $sig, $doc, $sigDoc, $parametersType, $exceptionHandling); |
|
467 | 467 | } |
468 | 468 | |
469 | 469 | /** |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | public function getOptions() |
249 | 249 | { |
250 | 250 | $values = array(); |
251 | - foreach(static::$options as $opt) { |
|
251 | + foreach (static::$options as $opt) { |
|
252 | 252 | $values[$opt] = $this->getOption($opt); |
253 | 253 | } |
254 | 254 | return $values; |
@@ -261,7 +261,7 @@ discard block |
||
261 | 261 | */ |
262 | 262 | public function setOptions($options) |
263 | 263 | { |
264 | - foreach($options as $name => $value) { |
|
264 | + foreach ($options as $name => $value) { |
|
265 | 265 | $this->setOption($name, $value); |
266 | 266 | } |
267 | 267 | |
@@ -299,7 +299,7 @@ discard block |
||
299 | 299 | */ |
300 | 300 | public static function xmlrpc_debugmsg($msg) |
301 | 301 | { |
302 | - static::$_xmlrpc_debuginfo .= $msg . "\n"; |
|
302 | + static::$_xmlrpc_debuginfo .= $msg."\n"; |
|
303 | 303 | } |
304 | 304 | |
305 | 305 | /** |
@@ -311,7 +311,7 @@ discard block |
||
311 | 311 | */ |
312 | 312 | public static function error_occurred($msg) |
313 | 313 | { |
314 | - static::$_xmlrpcs_occurred_errors .= $msg . "\n"; |
|
314 | + static::$_xmlrpcs_occurred_errors .= $msg."\n"; |
|
315 | 315 | } |
316 | 316 | |
317 | 317 | /** |
@@ -332,10 +332,10 @@ discard block |
||
332 | 332 | // user debug info should be encoded by the end user using the INTERNAL_ENCODING |
333 | 333 | $out = ''; |
334 | 334 | if ($this->debug_info != '') { |
335 | - $out .= "<!-- SERVER DEBUG INFO (BASE64 ENCODED):\n" . base64_encode($this->debug_info) . "\n-->\n"; |
|
335 | + $out .= "<!-- SERVER DEBUG INFO (BASE64 ENCODED):\n".base64_encode($this->debug_info)."\n-->\n"; |
|
336 | 336 | } |
337 | 337 | if (static::$_xmlrpc_debuginfo != '') { |
338 | - $out .= "<!-- DEBUG INFO:\n" . $this->getCharsetEncoder()->encodeEntities(str_replace('--', '_-', static::$_xmlrpc_debuginfo), PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "\n-->\n"; |
|
338 | + $out .= "<!-- DEBUG INFO:\n".$this->getCharsetEncoder()->encodeEntities(str_replace('--', '_-', static::$_xmlrpc_debuginfo), PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding)."\n-->\n"; |
|
339 | 339 | // NB: a better solution MIGHT be to use CDATA, but we need to insert it |
340 | 340 | // into return payload AFTER the beginning tag |
341 | 341 | //$out .= "<![CDATA[ DEBUG INFO:\n\n" . str_replace(']]>', ']_]_>', static::$_xmlrpc_debuginfo) . "\n]]>\n"; |
@@ -364,8 +364,8 @@ discard block |
||
364 | 364 | $this->debug_info = ''; |
365 | 365 | |
366 | 366 | // Save what we received, before parsing it |
367 | - if ($this->debug > 1) { |
|
368 | - $this->debugMsg("+++GOT+++\n" . $data . "\n+++END+++"); |
|
367 | + if ($this->debug>1) { |
|
368 | + $this->debugMsg("+++GOT+++\n".$data."\n+++END+++"); |
|
369 | 369 | } |
370 | 370 | |
371 | 371 | $resp = $this->parseRequestHeaders($data, $reqCharset, $respCharset, $respEncoding); |
@@ -382,13 +382,13 @@ discard block |
||
382 | 382 | $resp->raw_data = $rawData; |
383 | 383 | } |
384 | 384 | |
385 | - if ($this->debug > 2 && static::$_xmlrpcs_occurred_errors != '') { |
|
386 | - $this->debugMsg("+++PROCESSING ERRORS AND WARNINGS+++\n" . |
|
387 | - static::$_xmlrpcs_occurred_errors . "+++END+++"); |
|
385 | + if ($this->debug>2 && static::$_xmlrpcs_occurred_errors != '') { |
|
386 | + $this->debugMsg("+++PROCESSING ERRORS AND WARNINGS+++\n". |
|
387 | + static::$_xmlrpcs_occurred_errors."+++END+++"); |
|
388 | 388 | } |
389 | 389 | |
390 | 390 | $header = $resp->xml_header($respCharset); |
391 | - if ($this->debug > 0) { |
|
391 | + if ($this->debug>0) { |
|
392 | 392 | $header .= $this->serializeDebug($respCharset); |
393 | 393 | } |
394 | 394 | |
@@ -399,7 +399,7 @@ discard block |
||
399 | 399 | if (empty($payload)) { |
400 | 400 | $payload = $resp->serialize($respCharset); |
401 | 401 | } |
402 | - $payload = $header . $payload; |
|
402 | + $payload = $header.$payload; |
|
403 | 403 | |
404 | 404 | if ($returnPayload) { |
405 | 405 | return $payload; |
@@ -408,7 +408,7 @@ discard block |
||
408 | 408 | // if we get a warning/error that has output some text before here, then we cannot |
409 | 409 | // add a new header. We cannot say we are sending xml, either... |
410 | 410 | if (!headers_sent()) { |
411 | - header('Content-Type: ' . $resp->getContentType()); |
|
411 | + header('Content-Type: '.$resp->getContentType()); |
|
412 | 412 | // we do not know if client actually told us an accepted charset, but if it did we have to tell it what we did |
413 | 413 | header("Vary: Accept-Charset"); |
414 | 414 | |
@@ -431,10 +431,10 @@ discard block |
||
431 | 431 | // Note that Apache/mod_php will add (and even alter!) the Content-Length header on its own, but only for |
432 | 432 | // responses up to 8000 bytes |
433 | 433 | if ($phpNoSelfCompress) { |
434 | - header('Content-Length: ' . (int)strlen($payload)); |
|
434 | + header('Content-Length: '.(int) strlen($payload)); |
|
435 | 435 | } |
436 | 436 | } else { |
437 | - $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': http headers already sent before response is fully generated. Check for php warning or error messages'); |
|
437 | + $this->getLogger()->error('XML-RPC: '.__METHOD__.': http headers already sent before response is fully generated. Check for php warning or error messages'); |
|
438 | 438 | } |
439 | 439 | |
440 | 440 | print $payload; |
@@ -523,9 +523,9 @@ discard block |
||
523 | 523 | $numParams = count($in); |
524 | 524 | } |
525 | 525 | foreach ($sigs as $curSig) { |
526 | - if (count($curSig) == $numParams + 1) { |
|
526 | + if (count($curSig) == $numParams+1) { |
|
527 | 527 | $itsOK = 1; |
528 | - for ($n = 0; $n < $numParams; $n++) { |
|
528 | + for ($n = 0; $n<$numParams; $n++) { |
|
529 | 529 | if (is_object($in)) { |
530 | 530 | $p = $in->getParam($n); |
531 | 531 | if ($p->kindOf() == 'scalar') { |
@@ -538,10 +538,10 @@ discard block |
||
538 | 538 | } |
539 | 539 | |
540 | 540 | // param index is $n+1, as first member of sig is return type |
541 | - if ($pt != $curSig[$n + 1] && $curSig[$n + 1] != Value::$xmlrpcValue) { |
|
541 | + if ($pt != $curSig[$n+1] && $curSig[$n+1] != Value::$xmlrpcValue) { |
|
542 | 542 | $itsOK = 0; |
543 | - $pno = $n + 1; |
|
544 | - $wanted = $curSig[$n + 1]; |
|
543 | + $pno = $n+1; |
|
544 | + $wanted = $curSig[$n+1]; |
|
545 | 545 | $got = $pt; |
546 | 546 | break; |
547 | 547 | } |
@@ -568,10 +568,10 @@ discard block |
||
568 | 568 | // check if $_SERVER is populated: it might have been disabled via ini file |
569 | 569 | // (this is true even when in CLI mode) |
570 | 570 | if (count($_SERVER) == 0) { |
571 | - $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': cannot parse request headers as $_SERVER is not populated'); |
|
571 | + $this->getLogger()->error('XML-RPC: '.__METHOD__.': cannot parse request headers as $_SERVER is not populated'); |
|
572 | 572 | } |
573 | 573 | |
574 | - if ($this->debug > 1) { |
|
574 | + if ($this->debug>1) { |
|
575 | 575 | if (function_exists('getallheaders')) { |
576 | 576 | $this->debugMsg(''); // empty line |
577 | 577 | foreach (getallheaders() as $name => $val) { |
@@ -596,13 +596,13 @@ discard block |
||
596 | 596 | if (function_exists('gzinflate') && in_array($contentEncoding, $this->accepted_compression)) { |
597 | 597 | if ($contentEncoding == 'deflate' && $degzdata = @gzuncompress($data)) { |
598 | 598 | $data = $degzdata; |
599 | - if ($this->debug > 1) { |
|
600 | - $this->debugMsg("\n+++INFLATED REQUEST+++[" . strlen($data) . " chars]+++\n" . $data . "\n+++END+++"); |
|
599 | + if ($this->debug>1) { |
|
600 | + $this->debugMsg("\n+++INFLATED REQUEST+++[".strlen($data)." chars]+++\n".$data."\n+++END+++"); |
|
601 | 601 | } |
602 | 602 | } elseif ($contentEncoding == 'gzip' && $degzdata = @gzinflate(substr($data, 10))) { |
603 | 603 | $data = $degzdata; |
604 | - if ($this->debug > 1) { |
|
605 | - $this->debugMsg("+++INFLATED REQUEST+++[" . strlen($data) . " chars]+++\n" . $data . "\n+++END+++"); |
|
604 | + if ($this->debug>1) { |
|
605 | + $this->debugMsg("+++INFLATED REQUEST+++[".strlen($data)." chars]+++\n".$data."\n+++END+++"); |
|
606 | 606 | } |
607 | 607 | } else { |
608 | 608 | $r = new Response(0, PhpXmlRpc::$xmlrpcerr['server_decompress_fail'], |
@@ -689,7 +689,7 @@ discard block |
||
689 | 689 | if ($reqEncoding == 'ISO-8859-1') { |
690 | 690 | $data = utf8_encode($data); |
691 | 691 | } else { |
692 | - $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': unsupported charset encoding of received request: ' . $reqEncoding); |
|
692 | + $this->getLogger()->error('XML-RPC: '.__METHOD__.': unsupported charset encoding of received request: '.$reqEncoding); |
|
693 | 693 | } |
694 | 694 | } |
695 | 695 | } |
@@ -720,7 +720,7 @@ discard block |
||
720 | 720 | preg_match('/^XML error ([0-9]+)/', $_xh['isf_reason'], $matches); |
721 | 721 | return new Response( |
722 | 722 | 0, |
723 | - PhpXmlRpc::$xmlrpcerrxml + (int)$matches[1], |
|
723 | + PhpXmlRpc::$xmlrpcerrxml+(int) $matches[1], |
|
724 | 724 | $_xh['isf_reason']); |
725 | 725 | } elseif ($_xh['isf']) { |
726 | 726 | /// @todo separate better the various cases, as we have done in Request::parseResponse: invalid xml-rpc vs. |
@@ -728,7 +728,7 @@ discard block |
||
728 | 728 | return new Response( |
729 | 729 | 0, |
730 | 730 | PhpXmlRpc::$xmlrpcerr['invalid_request'], |
731 | - PhpXmlRpc::$xmlrpcstr['invalid_request'] . ' ' . $_xh['isf_reason']); |
|
731 | + PhpXmlRpc::$xmlrpcstr['invalid_request'].' '.$_xh['isf_reason']); |
|
732 | 732 | } else { |
733 | 733 | // small layering violation in favor of speed and memory usage: we should allow the 'execute' method handle |
734 | 734 | // this, but in the most common scenario (xml-rpc values type server with some methods registered as phpvals) |
@@ -738,20 +738,20 @@ discard block |
||
738 | 738 | ($this->dmap[$_xh['method']]['parameters_type'] != 'xmlrpcvals') |
739 | 739 | ) |
740 | 740 | ) { |
741 | - if ($this->debug > 1) { |
|
742 | - $this->debugMsg("\n+++PARSED+++\n" . var_export($_xh['params'], true) . "\n+++END+++"); |
|
741 | + if ($this->debug>1) { |
|
742 | + $this->debugMsg("\n+++PARSED+++\n".var_export($_xh['params'], true)."\n+++END+++"); |
|
743 | 743 | } |
744 | 744 | |
745 | 745 | return $this->execute($_xh['method'], $_xh['params'], $_xh['pt']); |
746 | 746 | } else { |
747 | 747 | // build a Request object with data parsed from xml and add parameters in |
748 | 748 | $req = new Request($_xh['method']); |
749 | - for ($i = 0; $i < count($_xh['params']); $i++) { |
|
749 | + for ($i = 0; $i<count($_xh['params']); $i++) { |
|
750 | 750 | $req->addParam($_xh['params'][$i]); |
751 | 751 | } |
752 | 752 | |
753 | - if ($this->debug > 1) { |
|
754 | - $this->debugMsg("\n+++PARSED+++\n" . var_export($req, true) . "\n+++END+++"); |
|
753 | + if ($this->debug>1) { |
|
754 | + $this->debugMsg("\n+++PARSED+++\n".var_export($req, true)."\n+++END+++"); |
|
755 | 755 | } |
756 | 756 | |
757 | 757 | return $this->execute($req); |
@@ -801,7 +801,7 @@ discard block |
||
801 | 801 | return new Response( |
802 | 802 | 0, |
803 | 803 | PhpXmlRpc::$xmlrpcerr['incorrect_params'], |
804 | - PhpXmlRpc::$xmlrpcstr['incorrect_params'] . ": {$errStr}" |
|
804 | + PhpXmlRpc::$xmlrpcstr['incorrect_params'].": {$errStr}" |
|
805 | 805 | ); |
806 | 806 | } |
807 | 807 | } |
@@ -816,7 +816,7 @@ discard block |
||
816 | 816 | // build string representation of function 'name' |
817 | 817 | if (is_array($func)) { |
818 | 818 | if (is_object($func[0])) { |
819 | - $funcName = get_class($func[0]) . '->' . $func[1]; |
|
819 | + $funcName = get_class($func[0]).'->'.$func[1]; |
|
820 | 820 | } else { |
821 | 821 | $funcName = implode('::', $func); |
822 | 822 | } |
@@ -828,23 +828,23 @@ discard block |
||
828 | 828 | |
829 | 829 | // verify that function to be invoked is in fact callable |
830 | 830 | if (!is_callable($func)) { |
831 | - $this->getLogger()->error("XML-RPC: " . __METHOD__ . ": function '$funcName' registered as method handler is not callable"); |
|
831 | + $this->getLogger()->error("XML-RPC: ".__METHOD__.": function '$funcName' registered as method handler is not callable"); |
|
832 | 832 | return new Response( |
833 | 833 | 0, |
834 | 834 | PhpXmlRpc::$xmlrpcerr['server_error'], |
835 | - PhpXmlRpc::$xmlrpcstr['server_error'] . ": no function matches method" |
|
835 | + PhpXmlRpc::$xmlrpcstr['server_error'].": no function matches method" |
|
836 | 836 | ); |
837 | 837 | } |
838 | 838 | |
839 | 839 | if (isset($dmap[$methodName]['exception_handling'])) { |
840 | - $exception_handling = (int)$dmap[$methodName]['exception_handling']; |
|
840 | + $exception_handling = (int) $dmap[$methodName]['exception_handling']; |
|
841 | 841 | } else { |
842 | 842 | $exception_handling = $this->exception_handling; |
843 | 843 | } |
844 | 844 | |
845 | 845 | // If debug level is 3, we should catch all errors generated during processing of user function, and log them |
846 | 846 | // as part of response |
847 | - if ($this->debug > 2) { |
|
847 | + if ($this->debug>2) { |
|
848 | 848 | self::$_xmlrpcs_prev_ehandler = set_error_handler(array('\PhpXmlRpc\Server', '_xmlrpcs_errorHandler')); |
849 | 849 | } |
850 | 850 | |
@@ -858,14 +858,14 @@ discard block |
||
858 | 858 | $r = call_user_func($func, $req); |
859 | 859 | } |
860 | 860 | if (!is_a($r, 'PhpXmlRpc\Response')) { |
861 | - $this->getLogger()->error("XML-RPC: " . __METHOD__ . ": function '$funcName' registered as method handler does not return an xmlrpc response object but a " . gettype($r)); |
|
861 | + $this->getLogger()->error("XML-RPC: ".__METHOD__.": function '$funcName' registered as method handler does not return an xmlrpc response object but a ".gettype($r)); |
|
862 | 862 | if (is_a($r, 'PhpXmlRpc\Value')) { |
863 | 863 | $r = new Response($r); |
864 | 864 | } else { |
865 | 865 | $r = new Response( |
866 | 866 | 0, |
867 | 867 | PhpXmlRpc::$xmlrpcerr['server_error'], |
868 | - PhpXmlRpc::$xmlrpcstr['server_error'] . ": function does not return xmlrpc response object" |
|
868 | + PhpXmlRpc::$xmlrpcstr['server_error'].": function does not return xmlrpc response object" |
|
869 | 869 | ); |
870 | 870 | } |
871 | 871 | } |
@@ -880,7 +880,7 @@ discard block |
||
880 | 880 | $r = call_user_func_array($func, array($methodName, $params, $this->user_data)); |
881 | 881 | // mimic EPI behaviour: if we get an array that looks like an error, make it an error response |
882 | 882 | if (is_array($r) && array_key_exists('faultCode', $r) && array_key_exists('faultString', $r)) { |
883 | - $r = new Response(0, (integer)$r['faultCode'], (string)$r['faultString']); |
|
883 | + $r = new Response(0, (integer) $r['faultCode'], (string) $r['faultString']); |
|
884 | 884 | } else { |
885 | 885 | // functions using EPI api should NOT return resp objects, so make sure we encode the |
886 | 886 | // return type correctly |
@@ -905,7 +905,7 @@ discard block |
||
905 | 905 | // proper error-response |
906 | 906 | switch ($exception_handling) { |
907 | 907 | case 2: |
908 | - if ($this->debug > 2) { |
|
908 | + if ($this->debug>2) { |
|
909 | 909 | if (self::$_xmlrpcs_prev_ehandler) { |
910 | 910 | set_error_handler(self::$_xmlrpcs_prev_ehandler); |
911 | 911 | } else { |
@@ -928,7 +928,7 @@ discard block |
||
928 | 928 | // proper error-response |
929 | 929 | switch ($exception_handling) { |
930 | 930 | case 2: |
931 | - if ($this->debug > 2) { |
|
931 | + if ($this->debug>2) { |
|
932 | 932 | if (self::$_xmlrpcs_prev_ehandler) { |
933 | 933 | set_error_handler(self::$_xmlrpcs_prev_ehandler); |
934 | 934 | } else { |
@@ -948,7 +948,7 @@ discard block |
||
948 | 948 | } |
949 | 949 | } |
950 | 950 | |
951 | - if ($this->debug > 2) { |
|
951 | + if ($this->debug>2) { |
|
952 | 952 | // note: restore the error handler we found before calling the user func, even if it has been changed |
953 | 953 | // inside the func itself |
954 | 954 | if (self::$_xmlrpcs_prev_ehandler) { |
@@ -1014,7 +1014,7 @@ discard block |
||
1014 | 1014 | */ |
1015 | 1015 | protected function debugMsg($string) |
1016 | 1016 | { |
1017 | - $this->debug_info .= $string . "\n"; |
|
1017 | + $this->debug_info .= $string."\n"; |
|
1018 | 1018 | } |
1019 | 1019 | |
1020 | 1020 | /** |
@@ -1305,7 +1305,7 @@ discard block |
||
1305 | 1305 | $i++; // for error message, we count params from 1 |
1306 | 1306 | return static::_xmlrpcs_multicall_error(new Response(0, |
1307 | 1307 | PhpXmlRpc::$xmlrpcerr['incorrect_params'], |
1308 | - PhpXmlRpc::$xmlrpcstr['incorrect_params'] . ": probable xml error in param " . $i)); |
|
1308 | + PhpXmlRpc::$xmlrpcstr['incorrect_params'].": probable xml error in param ".$i)); |
|
1309 | 1309 | } |
1310 | 1310 | } |
1311 | 1311 | |
@@ -1386,7 +1386,7 @@ discard block |
||
1386 | 1386 | } |
1387 | 1387 | } else { |
1388 | 1388 | $numCalls = count($req); |
1389 | - for ($i = 0; $i < $numCalls; $i++) { |
|
1389 | + for ($i = 0; $i<$numCalls; $i++) { |
|
1390 | 1390 | $result[$i] = static::_xmlrpcs_multicall_do_call_phpvals($server, $req[$i]); |
1391 | 1391 | } |
1392 | 1392 | } |
@@ -1451,12 +1451,12 @@ discard block |
||
1451 | 1451 | */ |
1452 | 1452 | protected function xml_header($charsetEncoding = '') |
1453 | 1453 | { |
1454 | - $this->logDeprecation('Method ' . __METHOD__ . ' is deprecated'); |
|
1454 | + $this->logDeprecation('Method '.__METHOD__.' is deprecated'); |
|
1455 | 1455 | |
1456 | 1456 | if ($charsetEncoding != '') { |
1457 | - return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\"?" . ">\n"; |
|
1457 | + return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\"?".">\n"; |
|
1458 | 1458 | } else { |
1459 | - return "<?xml version=\"1.0\"?" . ">\n"; |
|
1459 | + return "<?xml version=\"1.0\"?".">\n"; |
|
1460 | 1460 | } |
1461 | 1461 | } |
1462 | 1462 | |
@@ -1472,7 +1472,7 @@ discard block |
||
1472 | 1472 | case self::OPT_FUNCTIONS_PARAMETERS_TYPE: |
1473 | 1473 | case self::OPT_PHPVALS_ENCODING_OPTIONS: |
1474 | 1474 | case self::OPT_RESPONSE_CHARSET_ENCODING: |
1475 | - $this->logDeprecation('Getting property Request::' . $name . ' is deprecated'); |
|
1475 | + $this->logDeprecation('Getting property Request::'.$name.' is deprecated'); |
|
1476 | 1476 | return $this->$name; |
1477 | 1477 | case 'accepted_charset_encodings': |
1478 | 1478 | // manually implement the 'protected property' behaviour |
@@ -1484,16 +1484,16 @@ discard block |
||
1484 | 1484 | } |
1485 | 1485 | } |
1486 | 1486 | if ($canAccess) { |
1487 | - $this->logDeprecation('Getting property Request::' . $name . ' is deprecated'); |
|
1487 | + $this->logDeprecation('Getting property Request::'.$name.' is deprecated'); |
|
1488 | 1488 | return $this->accepted_compression; |
1489 | 1489 | } else { |
1490 | - trigger_error("Cannot access protected property Server::accepted_charset_encodings in " . __FILE__, E_USER_ERROR); |
|
1490 | + trigger_error("Cannot access protected property Server::accepted_charset_encodings in ".__FILE__, E_USER_ERROR); |
|
1491 | 1491 | } |
1492 | 1492 | break; |
1493 | 1493 | default: |
1494 | 1494 | /// @todo throw instead? There are very few other places where the lib trigger errors which can potentially reach stdout... |
1495 | 1495 | $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1); |
1496 | - trigger_error('Undefined property via __get(): ' . $name . ' in ' . $trace[0]['file'] . ' on line ' . $trace[0]['line'], E_USER_WARNING); |
|
1496 | + trigger_error('Undefined property via __get(): '.$name.' in '.$trace[0]['file'].' on line '.$trace[0]['line'], E_USER_WARNING); |
|
1497 | 1497 | $result = null; |
1498 | 1498 | return $result; |
1499 | 1499 | } |
@@ -1510,7 +1510,7 @@ discard block |
||
1510 | 1510 | case self::OPT_FUNCTIONS_PARAMETERS_TYPE: |
1511 | 1511 | case self::OPT_PHPVALS_ENCODING_OPTIONS: |
1512 | 1512 | case self::OPT_RESPONSE_CHARSET_ENCODING: |
1513 | - $this->logDeprecation('Setting property Request::' . $name . ' is deprecated'); |
|
1513 | + $this->logDeprecation('Setting property Request::'.$name.' is deprecated'); |
|
1514 | 1514 | $this->$name = $value; |
1515 | 1515 | break; |
1516 | 1516 | case 'accepted_charset_encodings': |
@@ -1523,16 +1523,16 @@ discard block |
||
1523 | 1523 | } |
1524 | 1524 | } |
1525 | 1525 | if ($canAccess) { |
1526 | - $this->logDeprecation('Setting property Request::' . $name . ' is deprecated'); |
|
1526 | + $this->logDeprecation('Setting property Request::'.$name.' is deprecated'); |
|
1527 | 1527 | $this->accepted_compression = $value; |
1528 | 1528 | } else { |
1529 | - trigger_error("Cannot access protected property Server::accepted_charset_encodings in " . __FILE__, E_USER_ERROR); |
|
1529 | + trigger_error("Cannot access protected property Server::accepted_charset_encodings in ".__FILE__, E_USER_ERROR); |
|
1530 | 1530 | } |
1531 | 1531 | break; |
1532 | 1532 | default: |
1533 | 1533 | /// @todo throw instead? There are very few other places where the lib trigger errors which can potentially reach stdout... |
1534 | 1534 | $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1); |
1535 | - trigger_error('Undefined property via __set(): ' . $name . ' in ' . $trace[0]['file'] . ' on line ' . $trace[0]['line'], E_USER_WARNING); |
|
1535 | + trigger_error('Undefined property via __set(): '.$name.' in '.$trace[0]['file'].' on line '.$trace[0]['line'], E_USER_WARNING); |
|
1536 | 1536 | } |
1537 | 1537 | } |
1538 | 1538 | |
@@ -1547,7 +1547,7 @@ discard block |
||
1547 | 1547 | case self::OPT_FUNCTIONS_PARAMETERS_TYPE: |
1548 | 1548 | case self::OPT_PHPVALS_ENCODING_OPTIONS: |
1549 | 1549 | case self::OPT_RESPONSE_CHARSET_ENCODING: |
1550 | - $this->logDeprecation('Checking property Request::' . $name . ' is deprecated'); |
|
1550 | + $this->logDeprecation('Checking property Request::'.$name.' is deprecated'); |
|
1551 | 1551 | return isset($this->$name); |
1552 | 1552 | case 'accepted_charset_encodings': |
1553 | 1553 | // manually implement the 'protected property' behaviour |
@@ -1559,7 +1559,7 @@ discard block |
||
1559 | 1559 | } |
1560 | 1560 | } |
1561 | 1561 | if ($canAccess) { |
1562 | - $this->logDeprecation('Checking property Request::' . $name . ' is deprecated'); |
|
1562 | + $this->logDeprecation('Checking property Request::'.$name.' is deprecated'); |
|
1563 | 1563 | return isset($this->accepted_compression); |
1564 | 1564 | } |
1565 | 1565 | // break through voluntarily |
@@ -1579,7 +1579,7 @@ discard block |
||
1579 | 1579 | case self::OPT_FUNCTIONS_PARAMETERS_TYPE: |
1580 | 1580 | case self::OPT_PHPVALS_ENCODING_OPTIONS: |
1581 | 1581 | case self::OPT_RESPONSE_CHARSET_ENCODING: |
1582 | - $this->logDeprecation('Unsetting property Request::' . $name . ' is deprecated'); |
|
1582 | + $this->logDeprecation('Unsetting property Request::'.$name.' is deprecated'); |
|
1583 | 1583 | unset($this->$name); |
1584 | 1584 | break; |
1585 | 1585 | case 'accepted_charset_encodings': |
@@ -1592,16 +1592,16 @@ discard block |
||
1592 | 1592 | } |
1593 | 1593 | } |
1594 | 1594 | if ($canAccess) { |
1595 | - $this->logDeprecation('Unsetting property Request::' . $name . ' is deprecated'); |
|
1595 | + $this->logDeprecation('Unsetting property Request::'.$name.' is deprecated'); |
|
1596 | 1596 | unset($this->accepted_compression); |
1597 | 1597 | } else { |
1598 | - trigger_error("Cannot access protected property Server::accepted_charset_encodings in " . __FILE__, E_USER_ERROR); |
|
1598 | + trigger_error("Cannot access protected property Server::accepted_charset_encodings in ".__FILE__, E_USER_ERROR); |
|
1599 | 1599 | } |
1600 | 1600 | break; |
1601 | 1601 | default: |
1602 | 1602 | /// @todo throw instead? There are very few other places where the lib trigger errors which can potentially reach stdout... |
1603 | 1603 | $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1); |
1604 | - trigger_error('Undefined property via __unset(): ' . $name . ' in ' . $trace[0]['file'] . ' on line ' . $trace[0]['line'], E_USER_WARNING); |
|
1604 | + trigger_error('Undefined property via __unset(): '.$name.' in '.$trace[0]['file'].' on line '.$trace[0]['line'], E_USER_WARNING); |
|
1605 | 1605 | } |
1606 | 1606 | } |
1607 | 1607 | } |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | |
85 | 85 | return true; |
86 | 86 | } else { |
87 | - $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': value passed in must be a PhpXmlRpc\Value'); |
|
87 | + $this->getLogger()->error('XML-RPC: '.__METHOD__.': value passed in must be a PhpXmlRpc\Value'); |
|
88 | 88 | return false; |
89 | 89 | } |
90 | 90 | } |
@@ -134,17 +134,17 @@ discard block |
||
134 | 134 | $this->logDeprecationUnlessCalledBy('serialize'); |
135 | 135 | |
136 | 136 | if ($charsetEncoding != '') { |
137 | - $this->content_type = 'text/xml; charset=' . $charsetEncoding; |
|
137 | + $this->content_type = 'text/xml; charset='.$charsetEncoding; |
|
138 | 138 | } else { |
139 | 139 | $this->content_type = 'text/xml'; |
140 | 140 | } |
141 | 141 | |
142 | 142 | $result = $this->xml_header($charsetEncoding); |
143 | - $result .= '<methodName>' . $this->getCharsetEncoder()->encodeEntities( |
|
144 | - $this->methodname, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "</methodName>\n"; |
|
143 | + $result .= '<methodName>'.$this->getCharsetEncoder()->encodeEntities( |
|
144 | + $this->methodname, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding)."</methodName>\n"; |
|
145 | 145 | $result .= "<params>\n"; |
146 | 146 | foreach ($this->params as $p) { |
147 | - $result .= "<param>\n" . $p->serialize($charsetEncoding) . |
|
147 | + $result .= "<param>\n".$p->serialize($charsetEncoding). |
|
148 | 148 | "</param>\n"; |
149 | 149 | } |
150 | 150 | $result .= "</params>\n"; |
@@ -164,9 +164,9 @@ discard block |
||
164 | 164 | $this->logDeprecationUnlessCalledBy('createPayload'); |
165 | 165 | |
166 | 166 | if ($charsetEncoding != '') { |
167 | - return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\" ?" . ">\n<methodCall>\n"; |
|
167 | + return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\" ?".">\n<methodCall>\n"; |
|
168 | 168 | } else { |
169 | - return "<?xml version=\"1.0\"?" . ">\n<methodCall>\n"; |
|
169 | + return "<?xml version=\"1.0\"?".">\n<methodCall>\n"; |
|
170 | 170 | } |
171 | 171 | } |
172 | 172 | |
@@ -228,14 +228,14 @@ discard block |
||
228 | 228 | */ |
229 | 229 | public function parseResponse($data = '', $headersProcessed = false, $returnType = XMLParser::RETURN_XMLRPCVALS) |
230 | 230 | { |
231 | - if ($this->debug > 0) { |
|
231 | + if ($this->debug>0) { |
|
232 | 232 | $this->getLogger()->debug("---GOT---\n$data\n---END---"); |
233 | 233 | } |
234 | 234 | |
235 | 235 | $this->httpResponse = array('raw_data' => $data, 'headers' => array(), 'cookies' => array()); |
236 | 236 | |
237 | 237 | if ($data == '') { |
238 | - $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': no response received from server.'); |
|
238 | + $this->getLogger()->error('XML-RPC: '.__METHOD__.': no response received from server.'); |
|
239 | 239 | return new Response(0, PhpXmlRpc::$xmlrpcerr['no_data'], PhpXmlRpc::$xmlrpcstr['no_data']); |
240 | 240 | } |
241 | 241 | |
@@ -243,12 +243,12 @@ discard block |
||
243 | 243 | if (substr($data, 0, 4) == 'HTTP') { |
244 | 244 | $httpParser = new Http(); |
245 | 245 | try { |
246 | - $httpResponse = $httpParser->parseResponseHeaders($data, $headersProcessed, $this->debug > 0); |
|
246 | + $httpResponse = $httpParser->parseResponseHeaders($data, $headersProcessed, $this->debug>0); |
|
247 | 247 | } catch (HttpException $e) { |
248 | 248 | // failed processing of HTTP response headers |
249 | 249 | // save into response obj the full payload received, for debugging |
250 | 250 | return new Response(0, $e->getCode(), $e->getMessage(), '', array('raw_data' => $data, 'status_code', $e->statusCode())); |
251 | - } catch(\Exception $e) { |
|
251 | + } catch (\Exception $e) { |
|
252 | 252 | return new Response(0, $e->getCode(), $e->getMessage(), '', array('raw_data' => $data)); |
253 | 253 | } |
254 | 254 | } else { |
@@ -264,7 +264,7 @@ discard block |
||
264 | 264 | // idea from Luca Mariano <[email protected]> originally in PEARified version of the lib |
265 | 265 | $pos = strrpos($data, '</methodResponse>'); |
266 | 266 | if ($pos !== false) { |
267 | - $data = substr($data, 0, $pos + 17); |
|
267 | + $data = substr($data, 0, $pos+17); |
|
268 | 268 | } |
269 | 269 | |
270 | 270 | // try to 'guestimate' the character encoding of the received response |
@@ -273,21 +273,21 @@ discard block |
||
273 | 273 | $data |
274 | 274 | ); |
275 | 275 | |
276 | - if ($this->debug >= 0) { |
|
276 | + if ($this->debug>=0) { |
|
277 | 277 | $this->httpResponse = $httpResponse; |
278 | 278 | } else { |
279 | 279 | $httpResponse = null; |
280 | 280 | } |
281 | 281 | |
282 | - if ($this->debug > 0) { |
|
282 | + if ($this->debug>0) { |
|
283 | 283 | $start = strpos($data, '<!-- SERVER DEBUG INFO (BASE64 ENCODED):'); |
284 | 284 | if ($start) { |
285 | 285 | $start += strlen('<!-- SERVER DEBUG INFO (BASE64 ENCODED):'); |
286 | 286 | /// @todo what if there is no end tag? |
287 | 287 | $end = strpos($data, '-->', $start); |
288 | - $comments = substr($data, $start, $end - $start); |
|
289 | - $this->getLogger()->debug("---SERVER DEBUG INFO (DECODED)---\n\t" . |
|
290 | - str_replace("\n", "\n\t", base64_decode($comments)) . "\n---END---", array('encoding' => $respEncoding)); |
|
288 | + $comments = substr($data, $start, $end-$start); |
|
289 | + $this->getLogger()->debug("---SERVER DEBUG INFO (DECODED)---\n\t". |
|
290 | + str_replace("\n", "\n\t", base64_decode($comments))."\n---END---", array('encoding' => $respEncoding)); |
|
291 | 291 | } |
292 | 292 | } |
293 | 293 | |
@@ -309,7 +309,7 @@ discard block |
||
309 | 309 | if ($respEncoding == 'ISO-8859-1') { |
310 | 310 | $data = utf8_encode($data); |
311 | 311 | } else { |
312 | - $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': unsupported charset encoding of received response: ' . $respEncoding); |
|
312 | + $this->getLogger()->error('XML-RPC: '.__METHOD__.': unsupported charset encoding of received response: '.$respEncoding); |
|
313 | 313 | } |
314 | 314 | } |
315 | 315 | } |
@@ -339,16 +339,16 @@ discard block |
||
339 | 339 | // there could be proxies meddling with the request, or network data corruption... |
340 | 340 | |
341 | 341 | $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_xml'], |
342 | - PhpXmlRpc::$xmlrpcstr['invalid_xml'] . ' ' . $_xh['isf_reason'], '', $httpResponse); |
|
342 | + PhpXmlRpc::$xmlrpcstr['invalid_xml'].' '.$_xh['isf_reason'], '', $httpResponse); |
|
343 | 343 | |
344 | - if ($this->debug > 0) { |
|
344 | + if ($this->debug>0) { |
|
345 | 345 | $this->getLogger()->debug($_xh['isf_reason']); |
346 | 346 | } |
347 | 347 | } |
348 | 348 | // second error check: xml well-formed but not xml-rpc compliant |
349 | 349 | elseif ($_xh['isf'] == 2) { |
350 | 350 | $r = new Response(0, PhpXmlRpc::$xmlrpcerr['xml_not_compliant'], |
351 | - PhpXmlRpc::$xmlrpcstr['xml_not_compliant'] . ' ' . $_xh['isf_reason'], '', $httpResponse); |
|
351 | + PhpXmlRpc::$xmlrpcstr['xml_not_compliant'].' '.$_xh['isf_reason'], '', $httpResponse); |
|
352 | 352 | |
353 | 353 | /// @todo echo something for the user? check if it was already done by the parser... |
354 | 354 | //if ($this->debug > 0) { |
@@ -357,7 +357,7 @@ discard block |
||
357 | 357 | } |
358 | 358 | // third error check: parsing of the response has somehow gone boink. |
359 | 359 | /// @todo shall we omit this check, since we trust the parsing code? |
360 | - elseif ($_xh['isf'] > 3 || $returnType == XMLParser::RETURN_XMLRPCVALS && !is_object($_xh['value'])) { |
|
360 | + elseif ($_xh['isf']>3 || $returnType == XMLParser::RETURN_XMLRPCVALS && !is_object($_xh['value'])) { |
|
361 | 361 | // something odd has happened and it's time to generate a client side error indicating something odd went on |
362 | 362 | $r = new Response(0, PhpXmlRpc::$xmlrpcerr['xml_parsing_error'], PhpXmlRpc::$xmlrpcstr['xml_parsing_error'], |
363 | 363 | '', $httpResponse |
@@ -365,7 +365,7 @@ discard block |
||
365 | 365 | |
366 | 366 | /// @todo echo something for the user? |
367 | 367 | } else { |
368 | - if ($this->debug > 1) { |
|
368 | + if ($this->debug>1) { |
|
369 | 369 | $this->getLogger()->debug( |
370 | 370 | "---PARSED---\n".var_export($_xh['value'], true)."\n---END---" |
371 | 371 | ); |
@@ -389,7 +389,7 @@ discard block |
||
389 | 389 | if ($errNo == 0) { |
390 | 390 | // FAULT returned, errno needs to reflect that |
391 | 391 | /// @todo feature creep - add this code to PhpXmlRpc::$xmlrpcerr |
392 | - $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': fault response received with faultCode 0 or null. Converted it to -1'); |
|
392 | + $this->getLogger()->error('XML-RPC: '.__METHOD__.': fault response received with faultCode 0 or null. Converted it to -1'); |
|
393 | 393 | $errNo = -1; |
394 | 394 | } |
395 | 395 | |
@@ -435,7 +435,7 @@ discard block |
||
435 | 435 | case '_php_class': |
436 | 436 | case 'payload': |
437 | 437 | case 'content_type': |
438 | - $this->logDeprecation('Getting property Request::' . $name . ' is deprecated'); |
|
438 | + $this->logDeprecation('Getting property Request::'.$name.' is deprecated'); |
|
439 | 439 | return $this->$name; |
440 | 440 | case 'httpResponse': |
441 | 441 | // manually implement the 'protected property' behaviour |
@@ -447,16 +447,16 @@ discard block |
||
447 | 447 | } |
448 | 448 | } |
449 | 449 | if ($canAccess) { |
450 | - $this->logDeprecation('Getting property Request::' . $name . ' is deprecated'); |
|
450 | + $this->logDeprecation('Getting property Request::'.$name.' is deprecated'); |
|
451 | 451 | return $this->httpResponse; |
452 | 452 | } else { |
453 | - trigger_error("Cannot access protected property Request::httpResponse in " . __FILE__, E_USER_ERROR); |
|
453 | + trigger_error("Cannot access protected property Request::httpResponse in ".__FILE__, E_USER_ERROR); |
|
454 | 454 | } |
455 | 455 | break; |
456 | 456 | default: |
457 | 457 | /// @todo throw instead? There are very few other places where the lib trigger errors which can potentially reach stdout... |
458 | 458 | $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1); |
459 | - trigger_error('Undefined property via __get(): ' . $name . ' in ' . $trace[0]['file'] . ' on line ' . $trace[0]['line'], E_USER_WARNING); |
|
459 | + trigger_error('Undefined property via __get(): '.$name.' in '.$trace[0]['file'].' on line '.$trace[0]['line'], E_USER_WARNING); |
|
460 | 460 | $result = null; |
461 | 461 | return $result; |
462 | 462 | } |
@@ -470,7 +470,7 @@ discard block |
||
470 | 470 | case 'debug': |
471 | 471 | case 'payload': |
472 | 472 | case 'content_type': |
473 | - $this->logDeprecation('Setting property Request::' . $name . ' is deprecated'); |
|
473 | + $this->logDeprecation('Setting property Request::'.$name.' is deprecated'); |
|
474 | 474 | $this->$name = $value; |
475 | 475 | break; |
476 | 476 | case 'httpResponse': |
@@ -483,16 +483,16 @@ discard block |
||
483 | 483 | } |
484 | 484 | } |
485 | 485 | if ($canAccess) { |
486 | - $this->logDeprecation('Setting property Request::' . $name . ' is deprecated'); |
|
486 | + $this->logDeprecation('Setting property Request::'.$name.' is deprecated'); |
|
487 | 487 | $this->httpResponse = $value; |
488 | 488 | } else { |
489 | - trigger_error("Cannot access protected property Request::httpResponse in " . __FILE__, E_USER_ERROR); |
|
489 | + trigger_error("Cannot access protected property Request::httpResponse in ".__FILE__, E_USER_ERROR); |
|
490 | 490 | } |
491 | 491 | break; |
492 | 492 | default: |
493 | 493 | /// @todo throw instead? There are very few other places where the lib trigger errors which can potentially reach stdout... |
494 | 494 | $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1); |
495 | - trigger_error('Undefined property via __set(): ' . $name . ' in ' . $trace[0]['file'] . ' on line ' . $trace[0]['line'], E_USER_WARNING); |
|
495 | + trigger_error('Undefined property via __set(): '.$name.' in '.$trace[0]['file'].' on line '.$trace[0]['line'], E_USER_WARNING); |
|
496 | 496 | } |
497 | 497 | } |
498 | 498 | |
@@ -504,7 +504,7 @@ discard block |
||
504 | 504 | case 'debug': |
505 | 505 | case 'payload': |
506 | 506 | case 'content_type': |
507 | - $this->logDeprecation('Checking property Request::' . $name . ' is deprecated'); |
|
507 | + $this->logDeprecation('Checking property Request::'.$name.' is deprecated'); |
|
508 | 508 | return isset($this->$name); |
509 | 509 | case 'httpResponse': |
510 | 510 | // manually implement the 'protected property' behaviour |
@@ -516,7 +516,7 @@ discard block |
||
516 | 516 | } |
517 | 517 | } |
518 | 518 | if ($canAccess) { |
519 | - $this->logDeprecation('Checking property Request::' . $name . ' is deprecated'); |
|
519 | + $this->logDeprecation('Checking property Request::'.$name.' is deprecated'); |
|
520 | 520 | return isset($this->httpResponse); |
521 | 521 | } |
522 | 522 | // break through voluntarily |
@@ -533,7 +533,7 @@ discard block |
||
533 | 533 | case 'debug': |
534 | 534 | case 'payload': |
535 | 535 | case 'content_type': |
536 | - $this->logDeprecation('Unsetting property Request::' . $name . ' is deprecated'); |
|
536 | + $this->logDeprecation('Unsetting property Request::'.$name.' is deprecated'); |
|
537 | 537 | unset($this->$name); |
538 | 538 | break; |
539 | 539 | case 'httpResponse': |
@@ -546,16 +546,16 @@ discard block |
||
546 | 546 | } |
547 | 547 | } |
548 | 548 | if ($canAccess) { |
549 | - $this->logDeprecation('Unsetting property Request::' . $name . ' is deprecated'); |
|
549 | + $this->logDeprecation('Unsetting property Request::'.$name.' is deprecated'); |
|
550 | 550 | unset($this->httpResponse); |
551 | 551 | } else { |
552 | - trigger_error("Cannot access protected property Request::httpResponse in " . __FILE__, E_USER_ERROR); |
|
552 | + trigger_error("Cannot access protected property Request::httpResponse in ".__FILE__, E_USER_ERROR); |
|
553 | 553 | } |
554 | 554 | break; |
555 | 555 | default: |
556 | 556 | /// @todo throw instead? There are very few other places where the lib trigger errors which can potentially reach stdout... |
557 | 557 | $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1); |
558 | - trigger_error('Undefined property via __unset(): ' . $name . ' in ' . $trace[0]['file'] . ' on line ' . $trace[0]['line'], E_USER_WARNING); |
|
558 | + trigger_error('Undefined property via __unset(): '.$name.' in '.$trace[0]['file'].' on line '.$trace[0]['line'], E_USER_WARNING); |
|
559 | 559 | } |
560 | 560 | } |
561 | 561 | } |