Completed
Push — master ( bd4048...b5c43f )
by Gaetano
13:39
created
src/Wrapper.php 1 patch
Spacing   +72 added lines, -72 removed lines patch added patch discarded remove patch
@@ -156,20 +156,20 @@  discard block
 block discarded – undo
156 156
             $callable = explode('::', $callable);
157 157
         }
158 158
         if (is_array($callable)) {
159
-            if (count($callable) < 2 || (!is_string($callable[0]) && !is_object($callable[0]))) {
160
-                error_log('XML-RPC: ' . __METHOD__ . ': syntax for function to be wrapped is wrong');
159
+            if (count($callable)<2 || (!is_string($callable[0]) && !is_object($callable[0]))) {
160
+                error_log('XML-RPC: '.__METHOD__.': syntax for function to be wrapped is wrong');
161 161
                 return false;
162 162
             }
163 163
             if (is_string($callable[0])) {
164 164
                 $plainFuncName = implode('::', $callable);
165 165
             } elseif (is_object($callable[0])) {
166
-                $plainFuncName = get_class($callable[0]) . '->' . $callable[1];
166
+                $plainFuncName = get_class($callable[0]).'->'.$callable[1];
167 167
             }
168 168
             $exists = method_exists($callable[0], $callable[1]);
169 169
         } else if ($callable instanceof \Closure) {
170 170
             // we do not support creating code which wraps closures, as php does not allow to serialize them
171 171
             if (!$buildIt) {
172
-                error_log('XML-RPC: ' . __METHOD__ . ': a closure can not be wrapped in generated source code');
172
+                error_log('XML-RPC: '.__METHOD__.': a closure can not be wrapped in generated source code');
173 173
                 return false;
174 174
             }
175 175
 
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
         }
182 182
 
183 183
         if (!$exists) {
184
-            error_log('XML-RPC: ' . __METHOD__ . ': function to be wrapped is not defined: ' . $plainFuncName);
184
+            error_log('XML-RPC: '.__METHOD__.': function to be wrapped is not defined: '.$plainFuncName);
185 185
             return false;
186 186
         }
187 187
 
@@ -225,23 +225,23 @@  discard block
 block discarded – undo
225 225
         if (is_array($callable)) {
226 226
             $func = new \ReflectionMethod($callable[0], $callable[1]);
227 227
             if ($func->isPrivate()) {
228
-                error_log('XML-RPC: ' . __METHOD__ . ': method to be wrapped is private: ' . $plainFuncName);
228
+                error_log('XML-RPC: '.__METHOD__.': method to be wrapped is private: '.$plainFuncName);
229 229
                 return false;
230 230
             }
231 231
             if ($func->isProtected()) {
232
-                error_log('XML-RPC: ' . __METHOD__ . ': method to be wrapped is protected: ' . $plainFuncName);
232
+                error_log('XML-RPC: '.__METHOD__.': method to be wrapped is protected: '.$plainFuncName);
233 233
                 return false;
234 234
             }
235 235
             if ($func->isConstructor()) {
236
-                error_log('XML-RPC: ' . __METHOD__ . ': method to be wrapped is the constructor: ' . $plainFuncName);
236
+                error_log('XML-RPC: '.__METHOD__.': method to be wrapped is the constructor: '.$plainFuncName);
237 237
                 return false;
238 238
             }
239 239
             if ($func->isDestructor()) {
240
-                error_log('XML-RPC: ' . __METHOD__ . ': method to be wrapped is the destructor: ' . $plainFuncName);
240
+                error_log('XML-RPC: '.__METHOD__.': method to be wrapped is the destructor: '.$plainFuncName);
241 241
                 return false;
242 242
             }
243 243
             if ($func->isAbstract()) {
244
-                error_log('XML-RPC: ' . __METHOD__ . ': method to be wrapped is abstract: ' . $plainFuncName);
244
+                error_log('XML-RPC: '.__METHOD__.': method to be wrapped is abstract: '.$plainFuncName);
245 245
                 return false;
246 246
             }
247 247
             /// @todo add more checks for static vs. nonstatic?
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
         if ($func->isInternal()) {
252 252
             // Note: from PHP 5.1.0 onward, we will possibly be able to use invokeargs
253 253
             // instead of getparameters to fully reflect internal php functions ?
254
-            error_log('XML-RPC: ' . __METHOD__ . ': function to be wrapped is internal: ' . $plainFuncName);
254
+            error_log('XML-RPC: '.__METHOD__.': function to be wrapped is internal: '.$plainFuncName);
255 255
             return false;
256 256
         }
257 257
 
@@ -303,7 +303,7 @@  discard block
 block discarded – undo
303 303
         $i = 0;
304 304
         foreach ($func->getParameters() as $paramObj) {
305 305
             $params[$i] = array();
306
-            $params[$i]['name'] = '$' . $paramObj->getName();
306
+            $params[$i]['name'] = '$'.$paramObj->getName();
307 307
             $params[$i]['isoptional'] = $paramObj->isOptional();
308 308
             $i++;
309 309
         }
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
             // build a signature
369 369
             $sig = array($this->php2XmlrpcType($funcDesc['returns']));
370 370
             $pSig = array($funcDesc['returnsDocs']);
371
-            for ($i = 0; $i < count($pars); $i++) {
371
+            for ($i = 0; $i<count($pars); $i++) {
372 372
                 $name = strtolower($funcDesc['params'][$i]['name']);
373 373
                 if (isset($funcDesc['paramDocs'][$name]['type'])) {
374 374
                     $sig[] = $this->php2XmlrpcType($funcDesc['paramDocs'][$name]['type']);
@@ -419,7 +419,7 @@  discard block
 block discarded – undo
419 419
                 }
420 420
             }
421 421
             $numPars = $req->getNumParams();
422
-            if ($numPars < $minPars || $numPars > $maxPars) {
422
+            if ($numPars<$minPars || $numPars>$maxPars) {
423 423
                 return new $responseClass(0, 3, 'Incorrect parameters passed to method');
424 424
             }
425 425
 
@@ -432,7 +432,7 @@  discard block
 block discarded – undo
432 432
 
433 433
             $result = call_user_func_array($callable, $params);
434 434
 
435
-            if (! is_a($result, $responseClass)) {
435
+            if (!is_a($result, $responseClass)) {
436 436
                 if ($funcDesc['returns'] == Value::$xmlrpcDateTime || $funcDesc['returns'] == Value::$xmlrpcBase64) {
437 437
                     $result = new $valueClass($result, $funcDesc['returns']);
438 438
                 } else {
@@ -467,9 +467,9 @@  discard block
 block discarded – undo
467 467
         if ($newFuncName == '') {
468 468
             if (is_array($callable)) {
469 469
                 if (is_string($callable[0])) {
470
-                    $xmlrpcFuncName = "{$prefix}_" . implode('_', $callable);
470
+                    $xmlrpcFuncName = "{$prefix}_".implode('_', $callable);
471 471
                 } else {
472
-                    $xmlrpcFuncName = "{$prefix}_" . get_class($callable[0]) . '_' . $callable[1];
472
+                    $xmlrpcFuncName = "{$prefix}_".get_class($callable[0]).'_'.$callable[1];
473 473
                 }
474 474
             } else {
475 475
                 if ($callable instanceof \Closure) {
@@ -505,8 +505,8 @@  discard block
 block discarded – undo
505 505
     {
506 506
         $namespace = '\\PhpXmlRpc\\';
507 507
 
508
-        $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool)$extraOptions['encode_php_objs'] : false;
509
-        $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool)$extraOptions['decode_php_objs'] : false;
508
+        $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool) $extraOptions['encode_php_objs'] : false;
509
+        $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool) $extraOptions['decode_php_objs'] : false;
510 510
         $catchWarnings = isset($extraOptions['suppress_warnings']) && $extraOptions['suppress_warnings'] ? '@' : '';
511 511
 
512 512
         $i = 0;
@@ -541,7 +541,7 @@  discard block
 block discarded – undo
541 541
         // build body of new function
542 542
 
543 543
         $innerCode = "\$paramCount = \$req->getNumParams();\n";
544
-        $innerCode .= "if (\$paramCount < $minPars || \$paramCount > $maxPars) return new {$namespace}Response(0, " . PhpXmlRpc::$xmlrpcerr['incorrect_params'] . ", '" . PhpXmlRpc::$xmlrpcstr['incorrect_params'] . "');\n";
544
+        $innerCode .= "if (\$paramCount < $minPars || \$paramCount > $maxPars) return new {$namespace}Response(0, ".PhpXmlRpc::$xmlrpcerr['incorrect_params'].", '".PhpXmlRpc::$xmlrpcstr['incorrect_params']."');\n";
545 545
 
546 546
         $innerCode .= "\$encoder = new {$namespace}Encoder();\n";
547 547
         if ($decodePhpObjects) {
@@ -555,13 +555,13 @@  discard block
 block discarded – undo
555 555
         if (is_array($callable) && is_object($callable[0])) {
556 556
             self::$objHolder[$newFuncName] = $callable[0];
557 557
             $innerCode .= "\$obj = PhpXmlRpc\\Wrapper::\$objHolder['$newFuncName'];\n";
558
-            $realFuncName = '$obj->' . $callable[1];
558
+            $realFuncName = '$obj->'.$callable[1];
559 559
         } else {
560 560
             $realFuncName = $plainFuncName;
561 561
         }
562 562
         foreach ($parsVariations as $i => $pars) {
563
-            $innerCode .= "if (\$paramCount == " . count($pars) . ") \$retval = {$catchWarnings}$realFuncName(" . implode(',', $pars) . ");\n";
564
-            if ($i < (count($parsVariations) - 1))
563
+            $innerCode .= "if (\$paramCount == ".count($pars).") \$retval = {$catchWarnings}$realFuncName(".implode(',', $pars).");\n";
564
+            if ($i<(count($parsVariations)-1))
565 565
                 $innerCode .= "else\n";
566 566
         }
567 567
         $innerCode .= "if (is_a(\$retval, '{$namespace}Response')) return \$retval; else\n";
@@ -578,7 +578,7 @@  discard block
 block discarded – undo
578 578
         // if($func->returnsReference())
579 579
         //     return false;
580 580
 
581
-        $code = "function $newFuncName(\$req) {\n" . $innerCode . "\n}";
581
+        $code = "function $newFuncName(\$req) {\n".$innerCode."\n}";
582 582
 
583 583
         return $code;
584 584
     }
@@ -615,7 +615,7 @@  discard block
 block discarded – undo
615 615
                         if ($methodWrap) {
616 616
                             if (is_object($className)) {
617 617
                                 $realClassName = get_class($className);
618
-                            }else {
618
+                            } else {
619 619
                                 $realClassName = $className;
620 620
                             }
621 621
                             $results[$prefix."$realClassName.$mName"] = $methodWrap;
@@ -716,21 +716,21 @@  discard block
 block discarded – undo
716 716
     protected function retrieveMethodSignature($client, $methodName, array $extraOptions = array())
717 717
     {
718 718
         $namespace = '\\PhpXmlRpc\\';
719
-        $reqClass = $namespace . 'Request';
720
-        $valClass = $namespace . 'Value';
721
-        $decoderClass = $namespace . 'Encoder';
719
+        $reqClass = $namespace.'Request';
720
+        $valClass = $namespace.'Value';
721
+        $decoderClass = $namespace.'Encoder';
722 722
 
723 723
         $debug = isset($extraOptions['debug']) ? ($extraOptions['debug']) : 0;
724
-        $timeout = isset($extraOptions['timeout']) ? (int)$extraOptions['timeout'] : 0;
724
+        $timeout = isset($extraOptions['timeout']) ? (int) $extraOptions['timeout'] : 0;
725 725
         $protocol = isset($extraOptions['protocol']) ? $extraOptions['protocol'] : '';
726
-        $sigNum = isset($extraOptions['signum']) ? (int)$extraOptions['signum'] : 0;
726
+        $sigNum = isset($extraOptions['signum']) ? (int) $extraOptions['signum'] : 0;
727 727
 
728 728
         $req = new $reqClass('system.methodSignature');
729 729
         $req->addparam(new $valClass($methodName));
730 730
         $client->setDebug($debug);
731 731
         $response = $client->send($req, $timeout, $protocol);
732 732
         if ($response->faultCode()) {
733
-            error_log('XML-RPC: ' . __METHOD__ . ': could not retrieve method signature from remote server for method ' . $methodName);
733
+            error_log('XML-RPC: '.__METHOD__.': could not retrieve method signature from remote server for method '.$methodName);
734 734
             return false;
735 735
         }
736 736
 
@@ -740,8 +740,8 @@  discard block
 block discarded – undo
740 740
             $mSig = $decoder->decode($mSig);
741 741
         }
742 742
 
743
-        if (!is_array($mSig) || count($mSig) <= $sigNum) {
744
-            error_log('XML-RPC: ' . __METHOD__ . ': could not retrieve method signature nr.' . $sigNum . ' from remote server for method ' . $methodName);
743
+        if (!is_array($mSig) || count($mSig)<=$sigNum) {
744
+            error_log('XML-RPC: '.__METHOD__.': could not retrieve method signature nr.'.$sigNum.' from remote server for method '.$methodName);
745 745
             return false;
746 746
         }
747 747
 
@@ -757,11 +757,11 @@  discard block
 block discarded – undo
757 757
     protected function retrieveMethodHelp($client, $methodName, array $extraOptions = array())
758 758
     {
759 759
         $namespace = '\\PhpXmlRpc\\';
760
-        $reqClass = $namespace . 'Request';
761
-        $valClass = $namespace . 'Value';
760
+        $reqClass = $namespace.'Request';
761
+        $valClass = $namespace.'Value';
762 762
 
763 763
         $debug = isset($extraOptions['debug']) ? ($extraOptions['debug']) : 0;
764
-        $timeout = isset($extraOptions['timeout']) ? (int)$extraOptions['timeout'] : 0;
764
+        $timeout = isset($extraOptions['timeout']) ? (int) $extraOptions['timeout'] : 0;
765 765
         $protocol = isset($extraOptions['protocol']) ? $extraOptions['protocol'] : '';
766 766
 
767 767
         $mDesc = '';
@@ -795,10 +795,10 @@  discard block
 block discarded – undo
795 795
         $clientClone = clone $client;
796 796
         $function = function() use($clientClone, $methodName, $extraOptions, $mSig)
797 797
         {
798
-            $timeout = isset($extraOptions['timeout']) ? (int)$extraOptions['timeout'] : 0;
798
+            $timeout = isset($extraOptions['timeout']) ? (int) $extraOptions['timeout'] : 0;
799 799
             $protocol = isset($extraOptions['protocol']) ? $extraOptions['protocol'] : '';
800
-            $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool)$extraOptions['encode_php_objs'] : false;
801
-            $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool)$extraOptions['decode_php_objs'] : false;
800
+            $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool) $extraOptions['encode_php_objs'] : false;
801
+            $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool) $extraOptions['decode_php_objs'] : false;
802 802
             if (isset($extraOptions['return_on_fault'])) {
803 803
                 $decodeFault = true;
804 804
                 $faultResponse = $extraOptions['return_on_fault'];
@@ -807,9 +807,9 @@  discard block
 block discarded – undo
807 807
             }
808 808
 
809 809
             $namespace = '\\PhpXmlRpc\\';
810
-            $reqClass = $namespace . 'Request';
811
-            $encoderClass = $namespace . 'Encoder';
812
-            $valueClass = $namespace . 'Value';
810
+            $reqClass = $namespace.'Request';
811
+            $encoderClass = $namespace.'Encoder';
812
+            $valueClass = $namespace.'Value';
813 813
 
814 814
             $encoder = new $encoderClass();
815 815
             $encodeOptions = array();
@@ -832,7 +832,7 @@  discard block
 block discarded – undo
832 832
             }
833 833
 
834 834
             $xmlrpcArgs = array();
835
-            foreach($currentArgs as $i => $arg) {
835
+            foreach ($currentArgs as $i => $arg) {
836 836
                 if ($i == $maxArgs) {
837 837
                     break;
838 838
                 }
@@ -880,13 +880,13 @@  discard block
 block discarded – undo
880 880
      * @param string $mDesc
881 881
      * @return array
882 882
      */
883
-    public function buildWrapMethodSource($client, $methodName, array $extraOptions, $newFuncName, $mSig, $mDesc='')
883
+    public function buildWrapMethodSource($client, $methodName, array $extraOptions, $newFuncName, $mSig, $mDesc = '')
884 884
     {
885
-        $timeout = isset($extraOptions['timeout']) ? (int)$extraOptions['timeout'] : 0;
885
+        $timeout = isset($extraOptions['timeout']) ? (int) $extraOptions['timeout'] : 0;
886 886
         $protocol = isset($extraOptions['protocol']) ? $extraOptions['protocol'] : '';
887
-        $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool)$extraOptions['encode_php_objs'] : false;
888
-        $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool)$extraOptions['decode_php_objs'] : false;
889
-        $clientCopyMode = isset($extraOptions['simple_client_copy']) ? (int)($extraOptions['simple_client_copy']) : 0;
887
+        $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool) $extraOptions['encode_php_objs'] : false;
888
+        $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool) $extraOptions['decode_php_objs'] : false;
889
+        $clientCopyMode = isset($extraOptions['simple_client_copy']) ? (int) ($extraOptions['simple_client_copy']) : 0;
890 890
         $prefix = isset($extraOptions['prefix']) ? $extraOptions['prefix'] : 'xmlrpc';
891 891
         if (isset($extraOptions['return_on_fault'])) {
892 892
             $decodeFault = true;
@@ -899,7 +899,7 @@  discard block
 block discarded – undo
899 899
         $namespace = '\\PhpXmlRpc\\';
900 900
 
901 901
         $code = "function $newFuncName (";
902
-        if ($clientCopyMode < 2) {
902
+        if ($clientCopyMode<2) {
903 903
             // client copy mode 0 or 1 == full / partial client copy in emitted code
904 904
             $verbatimClientCopy = !$clientCopyMode;
905 905
             $innerCode = $this->buildClientWrapperCode($client, $verbatimClientCopy, $prefix, $namespace);
@@ -914,7 +914,7 @@  discard block
 block discarded – undo
914 914
 
915 915
         if ($mDesc != '') {
916 916
             // take care that PHP comment is not terminated unwillingly by method description
917
-            $mDesc = "/**\n* " . str_replace('*/', '* /', $mDesc) . "\n";
917
+            $mDesc = "/**\n* ".str_replace('*/', '* /', $mDesc)."\n";
918 918
         } else {
919 919
             $mDesc = "/**\nFunction $newFuncName\n";
920 920
         }
@@ -923,7 +923,7 @@  discard block
 block discarded – undo
923 923
         $innerCode .= "\$encoder = new {$namespace}Encoder();\n";
924 924
         $plist = array();
925 925
         $pCount = count($mSig);
926
-        for ($i = 1; $i < $pCount; $i++) {
926
+        for ($i = 1; $i<$pCount; $i++) {
927 927
             $plist[] = "\$p$i";
928 928
             $pType = $mSig[$i];
929 929
             if ($pType == 'i4' || $pType == 'int' || $pType == 'boolean' || $pType == 'double' ||
@@ -939,19 +939,19 @@  discard block
 block discarded – undo
939 939
                 }
940 940
             }
941 941
             $innerCode .= "\$req->addparam(\$p$i);\n";
942
-            $mDesc .= '* @param ' . $this->xmlrpc2PhpType($pType) . " \$p$i\n";
942
+            $mDesc .= '* @param '.$this->xmlrpc2PhpType($pType)." \$p$i\n";
943 943
         }
944
-        if ($clientCopyMode < 2) {
944
+        if ($clientCopyMode<2) {
945 945
             $plist[] = '$debug=0';
946 946
             $mDesc .= "* @param int \$debug when 1 (or 2) will enable debugging of the underlying {$prefix} call (defaults to 0)\n";
947 947
         }
948 948
         $plist = implode(', ', $plist);
949
-        $mDesc .= '* @return ' . $this->xmlrpc2PhpType($mSig[0]) . " (or an {$namespace}Response obj instance if call fails)\n*/\n";
949
+        $mDesc .= '* @return '.$this->xmlrpc2PhpType($mSig[0])." (or an {$namespace}Response obj instance if call fails)\n*/\n";
950 950
 
951 951
         $innerCode .= "\$res = \${$this_}client->send(\$req, $timeout, '$protocol');\n";
952 952
         if ($decodeFault) {
953 953
             if (is_string($faultResponse) && ((strpos($faultResponse, '%faultCode%') !== false) || (strpos($faultResponse, '%faultString%') !== false))) {
954
-                $respCode = "str_replace(array('%faultCode%', '%faultString%'), array(\$res->faultCode(), \$res->faultString()), '" . str_replace("'", "''", $faultResponse) . "')";
954
+                $respCode = "str_replace(array('%faultCode%', '%faultString%'), array(\$res->faultCode(), \$res->faultString()), '".str_replace("'", "''", $faultResponse)."')";
955 955
             } else {
956 956
                 $respCode = var_export($faultResponse, true);
957 957
             }
@@ -964,7 +964,7 @@  discard block
 block discarded – undo
964 964
             $innerCode .= "if (\$res->faultcode()) return $respCode; else return \$encoder->decode(\$res->value());";
965 965
         }
966 966
 
967
-        $code = $code . $plist . ") {\n" . $innerCode . "\n}\n";
967
+        $code = $code.$plist.") {\n".$innerCode."\n}\n";
968 968
 
969 969
         return array('source' => $code, 'docstring' => $mDesc);
970 970
     }
@@ -990,23 +990,23 @@  discard block
 block discarded – undo
990 990
     public function wrapXmlrpcServer($client, $extraOptions = array())
991 991
     {
992 992
         $methodFilter = isset($extraOptions['method_filter']) ? $extraOptions['method_filter'] : '';
993
-        $timeout = isset($extraOptions['timeout']) ? (int)$extraOptions['timeout'] : 0;
993
+        $timeout = isset($extraOptions['timeout']) ? (int) $extraOptions['timeout'] : 0;
994 994
         $protocol = isset($extraOptions['protocol']) ? $extraOptions['protocol'] : '';
995 995
         $newClassName = isset($extraOptions['new_class_name']) ? $extraOptions['new_class_name'] : '';
996
-        $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool)$extraOptions['encode_php_objs'] : false;
997
-        $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool)$extraOptions['decode_php_objs'] : false;
996
+        $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool) $extraOptions['encode_php_objs'] : false;
997
+        $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool) $extraOptions['decode_php_objs'] : false;
998 998
         $verbatimClientCopy = isset($extraOptions['simple_client_copy']) ? !($extraOptions['simple_client_copy']) : true;
999 999
         $buildIt = isset($extraOptions['return_source']) ? !($extraOptions['return_source']) : true;
1000 1000
         $prefix = isset($extraOptions['prefix']) ? $extraOptions['prefix'] : 'xmlrpc';
1001 1001
         $namespace = '\\PhpXmlRpc\\';
1002 1002
 
1003
-        $reqClass = $namespace . 'Request';
1004
-        $decoderClass = $namespace . 'Encoder';
1003
+        $reqClass = $namespace.'Request';
1004
+        $decoderClass = $namespace.'Encoder';
1005 1005
 
1006 1006
         $req = new $reqClass('system.listMethods');
1007 1007
         $response = $client->send($req, $timeout, $protocol);
1008 1008
         if ($response->faultCode()) {
1009
-            error_log('XML-RPC: ' . __METHOD__ . ': could not retrieve method list from remote server');
1009
+            error_log('XML-RPC: '.__METHOD__.': could not retrieve method list from remote server');
1010 1010
 
1011 1011
             return false;
1012 1012
         } else {
@@ -1016,7 +1016,7 @@  discard block
 block discarded – undo
1016 1016
                 $mList = $decoder->decode($mList);
1017 1017
             }
1018 1018
             if (!is_array($mList) || !count($mList)) {
1019
-                error_log('XML-RPC: ' . __METHOD__ . ': could not retrieve meaningful method list from remote server');
1019
+                error_log('XML-RPC: '.__METHOD__.': could not retrieve meaningful method list from remote server');
1020 1020
 
1021 1021
                 return false;
1022 1022
             } else {
@@ -1024,8 +1024,8 @@  discard block
 block discarded – undo
1024 1024
                 if ($newClassName != '') {
1025 1025
                     $xmlrpcClassName = $newClassName;
1026 1026
                 } else {
1027
-                    $xmlrpcClassName = $prefix . '_' . preg_replace(array('/\./', '/[^a-zA-Z0-9_\x7f-\xff]/'),
1028
-                            array('_', ''), $client->server) . '_client';
1027
+                    $xmlrpcClassName = $prefix.'_'.preg_replace(array('/\./', '/[^a-zA-Z0-9_\x7f-\xff]/'),
1028
+                            array('_', ''), $client->server).'_client';
1029 1029
                 }
1030 1030
                 while ($buildIt && class_exists($xmlrpcClassName)) {
1031 1031
                     $xmlrpcClassName .= 'x';
@@ -1056,20 +1056,20 @@  discard block
 block discarded – undo
1056 1056
                             if (!$buildIt) {
1057 1057
                                 $source .= $methodWrap['docstring'];
1058 1058
                             }
1059
-                            $source .= $methodWrap['source'] . "\n";
1059
+                            $source .= $methodWrap['source']."\n";
1060 1060
                         } else {
1061
-                            error_log('XML-RPC: ' . __METHOD__ . ': will not create class method to wrap remote method ' . $mName);
1061
+                            error_log('XML-RPC: '.__METHOD__.': will not create class method to wrap remote method '.$mName);
1062 1062
                         }
1063 1063
                     }
1064 1064
                 }
1065 1065
                 $source .= "}\n";
1066 1066
                 if ($buildIt) {
1067 1067
                     $allOK = 0;
1068
-                    eval($source . '$allOK=1;');
1068
+                    eval($source.'$allOK=1;');
1069 1069
                     if ($allOK) {
1070 1070
                         return $xmlrpcClassName;
1071 1071
                     } else {
1072
-                        error_log('XML-RPC: ' . __METHOD__ . ': could not create class ' . $xmlrpcClassName . ' to wrap remote server ' . $client->server);
1072
+                        error_log('XML-RPC: '.__METHOD__.': could not create class '.$xmlrpcClassName.' to wrap remote server '.$client->server);
1073 1073
                         return false;
1074 1074
                     }
1075 1075
                 } else {
@@ -1090,10 +1090,10 @@  discard block
 block discarded – undo
1090 1090
      *
1091 1091
      * @return string
1092 1092
      */
1093
-    protected function buildClientWrapperCode($client, $verbatimClientCopy, $prefix = 'xmlrpc', $namespace = '\\PhpXmlRpc\\' )
1093
+    protected function buildClientWrapperCode($client, $verbatimClientCopy, $prefix = 'xmlrpc', $namespace = '\\PhpXmlRpc\\')
1094 1094
     {
1095
-        $code = "\$client = new {$namespace}Client('" . str_replace("'", "\'", $client->path) .
1096
-            "', '" . str_replace("'", "\'", $client->server) . "', $client->port);\n";
1095
+        $code = "\$client = new {$namespace}Client('".str_replace("'", "\'", $client->path).
1096
+            "', '".str_replace("'", "\'", $client->server)."', $client->port);\n";
1097 1097
 
1098 1098
         // copy all client fields to the client that will be generated runtime
1099 1099
         // (this provides for future expansion or subclassing of client obj)
Please login to merge, or discard this patch.
src/Value.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
                     $this->me['struct'] = $val;
74 74
                     break;
75 75
                 default:
76
-                    error_log("XML-RPC: " . __METHOD__ . ": not a known type ($type)");
76
+                    error_log("XML-RPC: ".__METHOD__.": not a known type ($type)");
77 77
             }
78 78
         }
79 79
     }
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         }
95 95
 
96 96
         if ($typeOf !== 1) {
97
-            error_log("XML-RPC: " . __METHOD__ . ": not a scalar type ($type)");
97
+            error_log("XML-RPC: ".__METHOD__.": not a scalar type ($type)");
98 98
             return 0;
99 99
         }
100 100
 
@@ -111,10 +111,10 @@  discard block
 block discarded – undo
111 111
 
112 112
         switch ($this->mytype) {
113 113
             case 1:
114
-                error_log('XML-RPC: ' . __METHOD__ . ': scalar xmlrpc value can have only one value');
114
+                error_log('XML-RPC: '.__METHOD__.': scalar xmlrpc value can have only one value');
115 115
                 return 0;
116 116
             case 3:
117
-                error_log('XML-RPC: ' . __METHOD__ . ': cannot add anonymous scalar to struct xmlrpc value');
117
+                error_log('XML-RPC: '.__METHOD__.': cannot add anonymous scalar to struct xmlrpc value');
118 118
                 return 0;
119 119
             case 2:
120 120
                 // we're adding a scalar value to an array here
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
 
153 153
             return 1;
154 154
         } else {
155
-            error_log('XML-RPC: ' . __METHOD__ . ': already initialized as a [' . $this->kindOf() . ']');
155
+            error_log('XML-RPC: '.__METHOD__.': already initialized as a ['.$this->kindOf().']');
156 156
             return 0;
157 157
         }
158 158
     }
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 
180 180
             return 1;
181 181
         } else {
182
-            error_log('XML-RPC: ' . __METHOD__ . ': already initialized as a [' . $this->kindOf() . ']');
182
+            error_log('XML-RPC: '.__METHOD__.': already initialized as a ['.$this->kindOf().']');
183 183
             return 0;
184 184
         }
185 185
     }
@@ -218,19 +218,19 @@  discard block
 block discarded – undo
218 218
             case 1:
219 219
                 switch ($typ) {
220 220
                     case static::$xmlrpcBase64:
221
-                        $rs .= "<${typ}>" . base64_encode($val) . "</${typ}>";
221
+                        $rs .= "<${typ}>".base64_encode($val)."</${typ}>";
222 222
                         break;
223 223
                     case static::$xmlrpcBoolean:
224
-                        $rs .= "<${typ}>" . ($val ? '1' : '0') . "</${typ}>";
224
+                        $rs .= "<${typ}>".($val ? '1' : '0')."</${typ}>";
225 225
                         break;
226 226
                     case static::$xmlrpcString:
227 227
                         // G. Giunta 2005/2/13: do NOT use htmlentities, since
228 228
                         // it will produce named html entities, which are invalid xml
229
-                        $rs .= "<${typ}>" . Charset::instance()->encodeEntities($val, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "</${typ}>";
229
+                        $rs .= "<${typ}>".Charset::instance()->encodeEntities($val, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding)."</${typ}>";
230 230
                         break;
231 231
                     case static::$xmlrpcInt:
232 232
                     case static::$xmlrpcI4:
233
-                        $rs .= "<${typ}>" . (int)$val . "</${typ}>";
233
+                        $rs .= "<${typ}>".(int) $val."</${typ}>";
234 234
                         break;
235 235
                     case static::$xmlrpcDouble:
236 236
                         // avoid using standard conversion of float to string because it is locale-dependent,
@@ -238,15 +238,15 @@  discard block
 block discarded – undo
238 238
                         // sprintf('%F') could be most likely ok but it fails eg. on 2e-14.
239 239
                         // The code below tries its best at keeping max precision while avoiding exp notation,
240 240
                         // but there is of course no limit in the number of decimal places to be used...
241
-                        $rs .= "<${typ}>" . preg_replace('/\\.?0+$/', '', number_format((double)$val, 128, '.', '')) . "</${typ}>";
241
+                        $rs .= "<${typ}>".preg_replace('/\\.?0+$/', '', number_format((double) $val, 128, '.', ''))."</${typ}>";
242 242
                         break;
243 243
                     case static::$xmlrpcDateTime:
244 244
                         if (is_string($val)) {
245 245
                             $rs .= "<${typ}>${val}</${typ}>";
246 246
                         } elseif (is_a($val, 'DateTime')) {
247
-                            $rs .= "<${typ}>" . $val->format('Ymd\TH:i:s') . "</${typ}>";
247
+                            $rs .= "<${typ}>".$val->format('Ymd\TH:i:s')."</${typ}>";
248 248
                         } elseif (is_int($val)) {
249
-                            $rs .= "<${typ}>" . strftime("%Y%m%dT%H:%M:%S", $val) . "</${typ}>";
249
+                            $rs .= "<${typ}>".strftime("%Y%m%dT%H:%M:%S", $val)."</${typ}>";
250 250
                         } else {
251 251
                             // not really a good idea here: but what shall we output anyway? left for backward compat...
252 252
                             $rs .= "<${typ}>${val}</${typ}>";
@@ -268,13 +268,13 @@  discard block
 block discarded – undo
268 268
             case 3:
269 269
                 // struct
270 270
                 if ($this->_php_class) {
271
-                    $rs .= '<struct php_class="' . $this->_php_class . "\">\n";
271
+                    $rs .= '<struct php_class="'.$this->_php_class."\">\n";
272 272
                 } else {
273 273
                     $rs .= "<struct>\n";
274 274
                 }
275 275
                 $charsetEncoder = Charset::instance();
276 276
                 foreach ($val as $key2 => $val2) {
277
-                    $rs .= '<member><name>' . $charsetEncoder->encodeEntities($key2, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "</name>\n";
277
+                    $rs .= '<member><name>'.$charsetEncoder->encodeEntities($key2, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding)."</name>\n";
278 278
                     //$rs.=$this->serializeval($val2);
279 279
                     $rs .= $val2->serialize($charsetEncoding);
280 280
                     $rs .= "</member>\n";
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
         reset($this->me);
313 313
         list($typ, $val) = each($this->me);
314 314
 
315
-        return '<value>' . $this->serializedata($typ, $val, $charsetEncoding) . "</value>\n";
315
+        return '<value>'.$this->serializedata($typ, $val, $charsetEncoding)."</value>\n";
316 316
         //}
317 317
     }
318 318
 
Please login to merge, or discard this patch.
src/Request.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -34,9 +34,9 @@  discard block
 block discarded – undo
34 34
     public function xml_header($charsetEncoding = '')
35 35
     {
36 36
         if ($charsetEncoding != '') {
37
-            return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\" ?" . ">\n<methodCall>\n";
37
+            return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\" ?".">\n<methodCall>\n";
38 38
         } else {
39
-            return "<?xml version=\"1.0\"?" . ">\n<methodCall>\n";
39
+            return "<?xml version=\"1.0\"?".">\n<methodCall>\n";
40 40
         }
41 41
     }
42 42
 
@@ -48,15 +48,15 @@  discard block
 block discarded – undo
48 48
     public function createPayload($charsetEncoding = '')
49 49
     {
50 50
         if ($charsetEncoding != '') {
51
-            $this->content_type = 'text/xml; charset=' . $charsetEncoding;
51
+            $this->content_type = 'text/xml; charset='.$charsetEncoding;
52 52
         } else {
53 53
             $this->content_type = 'text/xml';
54 54
         }
55 55
         $this->payload = $this->xml_header($charsetEncoding);
56
-        $this->payload .= '<methodName>' . Charset::instance()->encodeEntities($this->methodname, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "</methodName>\n";
56
+        $this->payload .= '<methodName>'.Charset::instance()->encodeEntities($this->methodname, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding)."</methodName>\n";
57 57
         $this->payload .= "<params>\n";
58 58
         foreach ($this->params as $p) {
59
-            $this->payload .= "<param>\n" . $p->serialize($charsetEncoding) .
59
+            $this->payload .= "<param>\n".$p->serialize($charsetEncoding).
60 60
                 "</param>\n";
61 61
         }
62 62
         $this->payload .= "</params>\n";
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
         $this->httpResponse = array('raw_data' => $data, 'headers' => array(), 'cookies' => array());
177 177
 
178 178
         if ($data == '') {
179
-            error_log('XML-RPC: ' . __METHOD__ . ': no response received from server.');
179
+            error_log('XML-RPC: '.__METHOD__.': no response received from server.');
180 180
             return new Response(0, PhpXmlRpc::$xmlrpcerr['no_data'], PhpXmlRpc::$xmlrpcstr['no_data']);
181 181
         }
182 182
 
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
             $httpParser = new Http();
186 186
             try {
187 187
                 $this->httpResponse = $httpParser->parseResponseHeaders($data, $headersProcessed, $this->debug);
188
-            } catch(\Exception $e) {
188
+            } catch (\Exception $e) {
189 189
                 $r = new Response(0, $e->getCode(), $e->getMessage());
190 190
                 // failed processing of HTTP response headers
191 191
                 // save into response obj the full payload received, for debugging
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
         // idea from Luca Mariano <[email protected]> originally in PEARified version of the lib
205 205
         $pos = strrpos($data, '</methodResponse>');
206 206
         if ($pos !== false) {
207
-            $data = substr($data, 0, $pos + 17);
207
+            $data = substr($data, 0, $pos+17);
208 208
         }
209 209
 
210 210
         // try to 'guestimate' the character encoding of the received response
@@ -215,9 +215,9 @@  discard block
 block discarded – undo
215 215
             if ($start) {
216 216
                 $start += strlen('<!-- SERVER DEBUG INFO (BASE64 ENCODED):');
217 217
                 $end = strpos($data, '-->', $start);
218
-                $comments = substr($data, $start, $end - $start);
219
-                Logger::instance()->debugMessage("---SERVER DEBUG INFO (DECODED) ---\n\t" .
220
-                    str_replace("\n", "\n\t", base64_decode($comments)) . "\n---END---", $respEncoding);
218
+                $comments = substr($data, $start, $end-$start);
219
+                Logger::instance()->debugMessage("---SERVER DEBUG INFO (DECODED) ---\n\t".
220
+                    str_replace("\n", "\n\t", base64_decode($comments))."\n---END---", $respEncoding);
221 221
             }
222 222
         }
223 223
 
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
                     if (extension_loaded('mbstring')) {
246 246
                         $data = mb_convert_encoding($data, 'UTF-8', $respEncoding);
247 247
                     } else {
248
-                        error_log('XML-RPC: ' . __METHOD__ . ': invalid charset encoding of received response: ' . $respEncoding);
248
+                        error_log('XML-RPC: '.__METHOD__.': invalid charset encoding of received response: '.$respEncoding);
249 249
                     }
250 250
                 }
251 251
             }
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
                     xml_get_current_line_number($parser), xml_get_current_column_number($parser));
289 289
             }
290 290
             error_log($errStr);
291
-            $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_return'], PhpXmlRpc::$xmlrpcstr['invalid_return'] . ' (' . $errStr . ')');
291
+            $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_return'], PhpXmlRpc::$xmlrpcstr['invalid_return'].' ('.$errStr.')');
292 292
             xml_parser_free($parser);
293 293
             if ($this->debug) {
294 294
                 print $errStr;
@@ -301,13 +301,13 @@  discard block
 block discarded – undo
301 301
         }
302 302
         xml_parser_free($parser);
303 303
         // second error check: xml well formed but not xml-rpc compliant
304
-        if ($xmlRpcParser->_xh['isf'] > 1) {
304
+        if ($xmlRpcParser->_xh['isf']>1) {
305 305
             if ($this->debug) {
306 306
                 /// @todo echo something for user?
307 307
             }
308 308
 
309 309
             $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_return'],
310
-                PhpXmlRpc::$xmlrpcstr['invalid_return'] . ' ' . $xmlRpcParser->_xh['isf_reason']);
310
+                PhpXmlRpc::$xmlrpcstr['invalid_return'].' '.$xmlRpcParser->_xh['isf_reason']);
311 311
         }
312 312
         // third error check: parsing of the response has somehow gone boink.
313 313
         // NB: shall we omit this check, since we trust the parsing code?
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
             $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_return'],
319 319
                 PhpXmlRpc::$xmlrpcstr['invalid_return']);
320 320
         } else {
321
-            if ($this->debug > 1) {
321
+            if ($this->debug>1) {
322 322
                 Logger::instance()->debugMessage(
323 323
                     "---PARSED---\n".var_export($xmlRpcParser->_xh['value'], true)."\n---END---"
324 324
                 );
Please login to merge, or discard this patch.
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.