Passed
Push — master ( 314870...f47fb2 )
by Gaetano
07:14
created
src/Wrapper.php 2 patches
Spacing   +73 added lines, -73 removed lines patch added patch discarded remove patch
@@ -182,20 +182,20 @@  discard block
 block discarded – undo
182 182
             $callable = explode('::', $callable);
183 183
         }
184 184
         if (is_array($callable)) {
185
-            if (count($callable) < 2 || (!is_string($callable[0]) && !is_object($callable[0]))) {
186
-                $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': syntax for function to be wrapped is wrong');
185
+            if (count($callable)<2 || (!is_string($callable[0]) && !is_object($callable[0]))) {
186
+                $this->getLogger()->errorLog('XML-RPC: '.__METHOD__.': syntax for function to be wrapped is wrong');
187 187
                 return false;
188 188
             }
189 189
             if (is_string($callable[0])) {
190 190
                 $plainFuncName = implode('::', $callable);
191 191
             } elseif (is_object($callable[0])) {
192
-                $plainFuncName = get_class($callable[0]) . '->' . $callable[1];
192
+                $plainFuncName = get_class($callable[0]).'->'.$callable[1];
193 193
             }
194 194
             $exists = method_exists($callable[0], $callable[1]);
195 195
         } else if ($callable instanceof \Closure) {
196 196
             // we do not support creating code which wraps closures, as php does not allow to serialize them
197 197
             if (!$buildIt) {
198
-                $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': a closure can not be wrapped in generated source code');
198
+                $this->getLogger()->errorLog('XML-RPC: '.__METHOD__.': a closure can not be wrapped in generated source code');
199 199
                 return false;
200 200
             }
201 201
 
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
         }
208 208
 
209 209
         if (!$exists) {
210
-            $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': function to be wrapped is not defined: ' . $plainFuncName);
210
+            $this->getLogger()->errorLog('XML-RPC: '.__METHOD__.': function to be wrapped is not defined: '.$plainFuncName);
211 211
             return false;
212 212
         }
213 213
 
@@ -251,23 +251,23 @@  discard block
 block discarded – undo
251 251
         if (is_array($callable)) {
252 252
             $func = new \ReflectionMethod($callable[0], $callable[1]);
253 253
             if ($func->isPrivate()) {
254
-                $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': method to be wrapped is private: ' . $plainFuncName);
254
+                $this->getLogger()->errorLog('XML-RPC: '.__METHOD__.': method to be wrapped is private: '.$plainFuncName);
255 255
                 return false;
256 256
             }
257 257
             if ($func->isProtected()) {
258
-                $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': method to be wrapped is protected: ' . $plainFuncName);
258
+                $this->getLogger()->errorLog('XML-RPC: '.__METHOD__.': method to be wrapped is protected: '.$plainFuncName);
259 259
                 return false;
260 260
             }
261 261
             if ($func->isConstructor()) {
262
-                $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': method to be wrapped is the constructor: ' . $plainFuncName);
262
+                $this->getLogger()->errorLog('XML-RPC: '.__METHOD__.': method to be wrapped is the constructor: '.$plainFuncName);
263 263
                 return false;
264 264
             }
265 265
             if ($func->isDestructor()) {
266
-                $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': method to be wrapped is the destructor: ' . $plainFuncName);
266
+                $this->getLogger()->errorLog('XML-RPC: '.__METHOD__.': method to be wrapped is the destructor: '.$plainFuncName);
267 267
                 return false;
268 268
             }
269 269
             if ($func->isAbstract()) {
270
-                $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': method to be wrapped is abstract: ' . $plainFuncName);
270
+                $this->getLogger()->errorLog('XML-RPC: '.__METHOD__.': method to be wrapped is abstract: '.$plainFuncName);
271 271
                 return false;
272 272
             }
273 273
             /// @todo add more checks for static vs. nonstatic?
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
         if ($func->isInternal()) {
278 278
             // Note: from PHP 5.1.0 onward, we will possibly be able to use invokeargs
279 279
             // instead of getparameters to fully reflect internal php functions ?
280
-            $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': function to be wrapped is internal: ' . $plainFuncName);
280
+            $this->getLogger()->errorLog('XML-RPC: '.__METHOD__.': function to be wrapped is internal: '.$plainFuncName);
281 281
             return false;
282 282
         }
283 283
 
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
         $i = 0;
330 330
         foreach ($func->getParameters() as $paramObj) {
331 331
             $params[$i] = array();
332
-            $params[$i]['name'] = '$' . $paramObj->getName();
332
+            $params[$i]['name'] = '$'.$paramObj->getName();
333 333
             $params[$i]['isoptional'] = $paramObj->isOptional();
334 334
             $i++;
335 335
         }
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
             // build a signature
395 395
             $sig = array($this->php2XmlrpcType($funcDesc['returns']));
396 396
             $pSig = array($funcDesc['returnsDocs']);
397
-            for ($i = 0; $i < count($pars); $i++) {
397
+            for ($i = 0; $i<count($pars); $i++) {
398 398
                 $name = strtolower($funcDesc['params'][$i]['name']);
399 399
                 if (isset($funcDesc['paramDocs'][$name]['type'])) {
400 400
                     $sig[] = $this->php2XmlrpcType($funcDesc['paramDocs'][$name]['type']);
@@ -449,7 +449,7 @@  discard block
 block discarded – undo
449 449
                 }
450 450
             }
451 451
             $numPars = $req->getNumParams();
452
-            if ($numPars < $minPars || $numPars > $maxPars) {
452
+            if ($numPars<$minPars || $numPars>$maxPars) {
453 453
                 return new $responseClass(0, 3, 'Incorrect parameters passed to method');
454 454
             }
455 455
 
@@ -462,7 +462,7 @@  discard block
 block discarded – undo
462 462
 
463 463
             $result = call_user_func_array($callable, $params);
464 464
 
465
-            if (! is_a($result, $responseClass)) {
465
+            if (!is_a($result, $responseClass)) {
466 466
                 if ($funcDesc['returns'] == Value::$xmlrpcDateTime || $funcDesc['returns'] == Value::$xmlrpcBase64) {
467 467
                     $result = new $valueClass($result, $funcDesc['returns']);
468 468
                 } else {
@@ -497,9 +497,9 @@  discard block
 block discarded – undo
497 497
         if ($newFuncName == '') {
498 498
             if (is_array($callable)) {
499 499
                 if (is_string($callable[0])) {
500
-                    $xmlrpcFuncName = "{$prefix}_" . implode('_', $callable);
500
+                    $xmlrpcFuncName = "{$prefix}_".implode('_', $callable);
501 501
                 } else {
502
-                    $xmlrpcFuncName = "{$prefix}_" . get_class($callable[0]) . '_' . $callable[1];
502
+                    $xmlrpcFuncName = "{$prefix}_".get_class($callable[0]).'_'.$callable[1];
503 503
                 }
504 504
             } else {
505 505
                 if ($callable instanceof \Closure) {
@@ -535,8 +535,8 @@  discard block
 block discarded – undo
535 535
     {
536 536
         $namespace = '\\PhpXmlRpc\\';
537 537
 
538
-        $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool)$extraOptions['encode_php_objs'] : false;
539
-        $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool)$extraOptions['decode_php_objs'] : false;
538
+        $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool) $extraOptions['encode_php_objs'] : false;
539
+        $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool) $extraOptions['decode_php_objs'] : false;
540 540
         $catchWarnings = isset($extraOptions['suppress_warnings']) && $extraOptions['suppress_warnings'] ? '@' : '';
541 541
 
542 542
         $i = 0;
@@ -571,7 +571,7 @@  discard block
 block discarded – undo
571 571
         // build body of new function
572 572
 
573 573
         $innerCode = "\$paramCount = \$req->getNumParams();\n";
574
-        $innerCode .= "if (\$paramCount < $minPars || \$paramCount > $maxPars) return new {$namespace}Response(0, " . PhpXmlRpc::$xmlrpcerr['incorrect_params'] . ", '" . PhpXmlRpc::$xmlrpcstr['incorrect_params'] . "');\n";
574
+        $innerCode .= "if (\$paramCount < $minPars || \$paramCount > $maxPars) return new {$namespace}Response(0, ".PhpXmlRpc::$xmlrpcerr['incorrect_params'].", '".PhpXmlRpc::$xmlrpcstr['incorrect_params']."');\n";
575 575
 
576 576
         $innerCode .= "\$encoder = new {$namespace}Encoder();\n";
577 577
         if ($decodePhpObjects) {
@@ -585,13 +585,13 @@  discard block
 block discarded – undo
585 585
         if (is_array($callable) && is_object($callable[0])) {
586 586
             self::$objHolder[$newFuncName] = $callable[0];
587 587
             $innerCode .= "\$obj = PhpXmlRpc\\Wrapper::\$objHolder['$newFuncName'];\n";
588
-            $realFuncName = '$obj->' . $callable[1];
588
+            $realFuncName = '$obj->'.$callable[1];
589 589
         } else {
590 590
             $realFuncName = $plainFuncName;
591 591
         }
592 592
         foreach ($parsVariations as $i => $pars) {
593
-            $innerCode .= "if (\$paramCount == " . count($pars) . ") \$retval = {$catchWarnings}$realFuncName(" . implode(',', $pars) . ");\n";
594
-            if ($i < (count($parsVariations) - 1))
593
+            $innerCode .= "if (\$paramCount == ".count($pars).") \$retval = {$catchWarnings}$realFuncName(".implode(',', $pars).");\n";
594
+            if ($i<(count($parsVariations)-1))
595 595
                 $innerCode .= "else\n";
596 596
         }
597 597
         $innerCode .= "if (is_a(\$retval, '{$namespace}Response')) return \$retval; else\n";
@@ -608,7 +608,7 @@  discard block
 block discarded – undo
608 608
         // if($func->returnsReference())
609 609
         //     return false;
610 610
 
611
-        $code = "function $newFuncName(\$req) {\n" . $innerCode . "\n}";
611
+        $code = "function $newFuncName(\$req) {\n".$innerCode."\n}";
612 612
 
613 613
         return $code;
614 614
     }
@@ -662,7 +662,7 @@  discard block
 block discarded – undo
662 662
     protected function generateMethodNameForClassMethod($className, $classMethod, $extraOptions = array())
663 663
     {
664 664
         if (isset($extraOptions['replace_class_name']) && $extraOptions['replace_class_name']) {
665
-            return (isset($extraOptions['prefix']) ?  $extraOptions['prefix'] : '') . $classMethod;
665
+            return (isset($extraOptions['prefix']) ? $extraOptions['prefix'] : '').$classMethod;
666 666
         }
667 667
 
668 668
         if (is_object($className)) {
@@ -670,7 +670,7 @@  discard block
 block discarded – undo
670 670
         } else {
671 671
             $realClassName = $className;
672 672
         }
673
-        return (isset($extraOptions['prefix']) ?  $extraOptions['prefix'] : '') . "$realClassName.$classMethod";
673
+        return (isset($extraOptions['prefix']) ? $extraOptions['prefix'] : '')."$realClassName.$classMethod";
674 674
     }
675 675
 
676 676
     /**
@@ -760,21 +760,21 @@  discard block
 block discarded – undo
760 760
     protected function retrieveMethodSignature($client, $methodName, array $extraOptions = array())
761 761
     {
762 762
         $namespace = '\\PhpXmlRpc\\';
763
-        $reqClass = $namespace . 'Request';
764
-        $valClass = $namespace . 'Value';
765
-        $decoderClass = $namespace . 'Encoder';
763
+        $reqClass = $namespace.'Request';
764
+        $valClass = $namespace.'Value';
765
+        $decoderClass = $namespace.'Encoder';
766 766
 
767 767
         $debug = isset($extraOptions['debug']) ? ($extraOptions['debug']) : 0;
768
-        $timeout = isset($extraOptions['timeout']) ? (int)$extraOptions['timeout'] : 0;
768
+        $timeout = isset($extraOptions['timeout']) ? (int) $extraOptions['timeout'] : 0;
769 769
         $protocol = isset($extraOptions['protocol']) ? $extraOptions['protocol'] : '';
770
-        $sigNum = isset($extraOptions['signum']) ? (int)$extraOptions['signum'] : 0;
770
+        $sigNum = isset($extraOptions['signum']) ? (int) $extraOptions['signum'] : 0;
771 771
 
772 772
         $req = new $reqClass('system.methodSignature');
773 773
         $req->addparam(new $valClass($methodName));
774 774
         $client->setDebug($debug);
775 775
         $response = $client->send($req, $timeout, $protocol);
776 776
         if ($response->faultCode()) {
777
-            $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': could not retrieve method signature from remote server for method ' . $methodName);
777
+            $this->getLogger()->errorLog('XML-RPC: '.__METHOD__.': could not retrieve method signature from remote server for method '.$methodName);
778 778
             return false;
779 779
         }
780 780
 
@@ -784,8 +784,8 @@  discard block
 block discarded – undo
784 784
             $mSig = $decoder->decode($mSig);
785 785
         }
786 786
 
787
-        if (!is_array($mSig) || count($mSig) <= $sigNum) {
788
-            $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': could not retrieve method signature nr.' . $sigNum . ' from remote server for method ' . $methodName);
787
+        if (!is_array($mSig) || count($mSig)<=$sigNum) {
788
+            $this->getLogger()->errorLog('XML-RPC: '.__METHOD__.': could not retrieve method signature nr.'.$sigNum.' from remote server for method '.$methodName);
789 789
             return false;
790 790
         }
791 791
 
@@ -801,11 +801,11 @@  discard block
 block discarded – undo
801 801
     protected function retrieveMethodHelp($client, $methodName, array $extraOptions = array())
802 802
     {
803 803
         $namespace = '\\PhpXmlRpc\\';
804
-        $reqClass = $namespace . 'Request';
805
-        $valClass = $namespace . 'Value';
804
+        $reqClass = $namespace.'Request';
805
+        $valClass = $namespace.'Value';
806 806
 
807 807
         $debug = isset($extraOptions['debug']) ? ($extraOptions['debug']) : 0;
808
-        $timeout = isset($extraOptions['timeout']) ? (int)$extraOptions['timeout'] : 0;
808
+        $timeout = isset($extraOptions['timeout']) ? (int) $extraOptions['timeout'] : 0;
809 809
         $protocol = isset($extraOptions['protocol']) ? $extraOptions['protocol'] : '';
810 810
 
811 811
         $mDesc = '';
@@ -839,10 +839,10 @@  discard block
 block discarded – undo
839 839
         $clientClone = clone $client;
840 840
         $function = function() use($clientClone, $methodName, $extraOptions, $mSig)
841 841
         {
842
-            $timeout = isset($extraOptions['timeout']) ? (int)$extraOptions['timeout'] : 0;
842
+            $timeout = isset($extraOptions['timeout']) ? (int) $extraOptions['timeout'] : 0;
843 843
             $protocol = isset($extraOptions['protocol']) ? $extraOptions['protocol'] : '';
844
-            $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool)$extraOptions['encode_php_objs'] : false;
845
-            $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool)$extraOptions['decode_php_objs'] : false;
844
+            $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool) $extraOptions['encode_php_objs'] : false;
845
+            $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool) $extraOptions['decode_php_objs'] : false;
846 846
             if (isset($extraOptions['return_on_fault'])) {
847 847
                 $decodeFault = true;
848 848
                 $faultResponse = $extraOptions['return_on_fault'];
@@ -851,9 +851,9 @@  discard block
 block discarded – undo
851 851
             }
852 852
 
853 853
             $namespace = '\\PhpXmlRpc\\';
854
-            $reqClass = $namespace . 'Request';
855
-            $encoderClass = $namespace . 'Encoder';
856
-            $valueClass = $namespace . 'Value';
854
+            $reqClass = $namespace.'Request';
855
+            $encoderClass = $namespace.'Encoder';
856
+            $valueClass = $namespace.'Value';
857 857
 
858 858
             $encoder = new $encoderClass();
859 859
             $encodeOptions = array();
@@ -876,7 +876,7 @@  discard block
 block discarded – undo
876 876
             }
877 877
 
878 878
             $xmlrpcArgs = array();
879
-            foreach($currentArgs as $i => $arg) {
879
+            foreach ($currentArgs as $i => $arg) {
880 880
                 if ($i == $maxArgs) {
881 881
                     break;
882 882
                 }
@@ -924,13 +924,13 @@  discard block
 block discarded – undo
924 924
      * @param string $mDesc
925 925
      * @return string[] keys: source, docstring
926 926
      */
927
-    public function buildWrapMethodSource($client, $methodName, array $extraOptions, $newFuncName, $mSig, $mDesc='')
927
+    public function buildWrapMethodSource($client, $methodName, array $extraOptions, $newFuncName, $mSig, $mDesc = '')
928 928
     {
929
-        $timeout = isset($extraOptions['timeout']) ? (int)$extraOptions['timeout'] : 0;
929
+        $timeout = isset($extraOptions['timeout']) ? (int) $extraOptions['timeout'] : 0;
930 930
         $protocol = isset($extraOptions['protocol']) ? $extraOptions['protocol'] : '';
931
-        $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool)$extraOptions['encode_php_objs'] : false;
932
-        $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool)$extraOptions['decode_php_objs'] : false;
933
-        $clientCopyMode = isset($extraOptions['simple_client_copy']) ? (int)($extraOptions['simple_client_copy']) : 0;
931
+        $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool) $extraOptions['encode_php_objs'] : false;
932
+        $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool) $extraOptions['decode_php_objs'] : false;
933
+        $clientCopyMode = isset($extraOptions['simple_client_copy']) ? (int) ($extraOptions['simple_client_copy']) : 0;
934 934
         $prefix = isset($extraOptions['prefix']) ? $extraOptions['prefix'] : 'xmlrpc';
935 935
         if (isset($extraOptions['return_on_fault'])) {
936 936
             $decodeFault = true;
@@ -943,7 +943,7 @@  discard block
 block discarded – undo
943 943
         $namespace = '\\PhpXmlRpc\\';
944 944
 
945 945
         $code = "function $newFuncName (";
946
-        if ($clientCopyMode < 2) {
946
+        if ($clientCopyMode<2) {
947 947
             // client copy mode 0 or 1 == full / partial client copy in emitted code
948 948
             $verbatimClientCopy = !$clientCopyMode;
949 949
             $innerCode = $this->buildClientWrapperCode($client, $verbatimClientCopy, $prefix, $namespace);
@@ -958,7 +958,7 @@  discard block
 block discarded – undo
958 958
 
959 959
         if ($mDesc != '') {
960 960
             // take care that PHP comment is not terminated unwillingly by method description
961
-            $mDesc = "/**\n* " . str_replace('*/', '* /', $mDesc) . "\n";
961
+            $mDesc = "/**\n* ".str_replace('*/', '* /', $mDesc)."\n";
962 962
         } else {
963 963
             $mDesc = "/**\nFunction $newFuncName\n";
964 964
         }
@@ -967,7 +967,7 @@  discard block
 block discarded – undo
967 967
         $innerCode .= "\$encoder = new {$namespace}Encoder();\n";
968 968
         $plist = array();
969 969
         $pCount = count($mSig);
970
-        for ($i = 1; $i < $pCount; $i++) {
970
+        for ($i = 1; $i<$pCount; $i++) {
971 971
             $plist[] = "\$p$i";
972 972
             $pType = $mSig[$i];
973 973
             if ($pType == 'i4' || $pType == 'i8' || $pType == 'int' || $pType == 'boolean' || $pType == 'double' ||
@@ -983,19 +983,19 @@  discard block
 block discarded – undo
983 983
                 }
984 984
             }
985 985
             $innerCode .= "\$req->addparam(\$p$i);\n";
986
-            $mDesc .= '* @param ' . $this->xmlrpc2PhpType($pType) . " \$p$i\n";
986
+            $mDesc .= '* @param '.$this->xmlrpc2PhpType($pType)." \$p$i\n";
987 987
         }
988
-        if ($clientCopyMode < 2) {
988
+        if ($clientCopyMode<2) {
989 989
             $plist[] = '$debug=0';
990 990
             $mDesc .= "* @param int \$debug when 1 (or 2) will enable debugging of the underlying {$prefix} call (defaults to 0)\n";
991 991
         }
992 992
         $plist = implode(', ', $plist);
993
-        $mDesc .= '* @return {$namespace}Response|' . $this->xmlrpc2PhpType($mSig[0]) . " (an {$namespace}Response obj instance if call fails)\n*/\n";
993
+        $mDesc .= '* @return {$namespace}Response|'.$this->xmlrpc2PhpType($mSig[0])." (an {$namespace}Response obj instance if call fails)\n*/\n";
994 994
 
995 995
         $innerCode .= "\$res = \${$this_}client->send(\$req, $timeout, '$protocol');\n";
996 996
         if ($decodeFault) {
997 997
             if (is_string($faultResponse) && ((strpos($faultResponse, '%faultCode%') !== false) || (strpos($faultResponse, '%faultString%') !== false))) {
998
-                $respCode = "str_replace(array('%faultCode%', '%faultString%'), array(\$res->faultCode(), \$res->faultString()), '" . str_replace("'", "''", $faultResponse) . "')";
998
+                $respCode = "str_replace(array('%faultCode%', '%faultString%'), array(\$res->faultCode(), \$res->faultString()), '".str_replace("'", "''", $faultResponse)."')";
999 999
             } else {
1000 1000
                 $respCode = var_export($faultResponse, true);
1001 1001
             }
@@ -1008,7 +1008,7 @@  discard block
 block discarded – undo
1008 1008
             $innerCode .= "if (\$res->faultcode()) return $respCode; else return \$encoder->decode(\$res->value());";
1009 1009
         }
1010 1010
 
1011
-        $code = $code . $plist . ") {\n" . $innerCode . "\n}\n";
1011
+        $code = $code.$plist.") {\n".$innerCode."\n}\n";
1012 1012
 
1013 1013
         return array('source' => $code, 'docstring' => $mDesc);
1014 1014
     }
@@ -1034,23 +1034,23 @@  discard block
 block discarded – undo
1034 1034
     public function wrapXmlrpcServer($client, $extraOptions = array())
1035 1035
     {
1036 1036
         $methodFilter = isset($extraOptions['method_filter']) ? $extraOptions['method_filter'] : '';
1037
-        $timeout = isset($extraOptions['timeout']) ? (int)$extraOptions['timeout'] : 0;
1037
+        $timeout = isset($extraOptions['timeout']) ? (int) $extraOptions['timeout'] : 0;
1038 1038
         $protocol = isset($extraOptions['protocol']) ? $extraOptions['protocol'] : '';
1039 1039
         $newClassName = isset($extraOptions['new_class_name']) ? $extraOptions['new_class_name'] : '';
1040
-        $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool)$extraOptions['encode_php_objs'] : false;
1041
-        $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool)$extraOptions['decode_php_objs'] : false;
1040
+        $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool) $extraOptions['encode_php_objs'] : false;
1041
+        $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool) $extraOptions['decode_php_objs'] : false;
1042 1042
         $verbatimClientCopy = isset($extraOptions['simple_client_copy']) ? !($extraOptions['simple_client_copy']) : true;
1043 1043
         $buildIt = isset($extraOptions['return_source']) ? !($extraOptions['return_source']) : true;
1044 1044
         $prefix = isset($extraOptions['prefix']) ? $extraOptions['prefix'] : 'xmlrpc';
1045 1045
         $namespace = '\\PhpXmlRpc\\';
1046 1046
 
1047
-        $reqClass = $namespace . 'Request';
1048
-        $decoderClass = $namespace . 'Encoder';
1047
+        $reqClass = $namespace.'Request';
1048
+        $decoderClass = $namespace.'Encoder';
1049 1049
 
1050 1050
         $req = new $reqClass('system.listMethods');
1051 1051
         $response = $client->send($req, $timeout, $protocol);
1052 1052
         if ($response->faultCode()) {
1053
-            $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': could not retrieve method list from remote server');
1053
+            $this->getLogger()->errorLog('XML-RPC: '.__METHOD__.': could not retrieve method list from remote server');
1054 1054
 
1055 1055
             return false;
1056 1056
         } else {
@@ -1060,7 +1060,7 @@  discard block
 block discarded – undo
1060 1060
                 $mList = $decoder->decode($mList);
1061 1061
             }
1062 1062
             if (!is_array($mList) || !count($mList)) {
1063
-                $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': could not retrieve meaningful method list from remote server');
1063
+                $this->getLogger()->errorLog('XML-RPC: '.__METHOD__.': could not retrieve meaningful method list from remote server');
1064 1064
 
1065 1065
                 return false;
1066 1066
             } else {
@@ -1068,8 +1068,8 @@  discard block
 block discarded – undo
1068 1068
                 if ($newClassName != '') {
1069 1069
                     $xmlrpcClassName = $newClassName;
1070 1070
                 } else {
1071
-                    $xmlrpcClassName = $prefix . '_' . preg_replace(array('/\./', '/[^a-zA-Z0-9_\x7f-\xff]/'),
1072
-                            array('_', ''), $client->server) . '_client';
1071
+                    $xmlrpcClassName = $prefix.'_'.preg_replace(array('/\./', '/[^a-zA-Z0-9_\x7f-\xff]/'),
1072
+                            array('_', ''), $client->server).'_client';
1073 1073
                 }
1074 1074
                 while ($buildIt && class_exists($xmlrpcClassName)) {
1075 1075
                     $xmlrpcClassName .= 'x';
@@ -1100,20 +1100,20 @@  discard block
 block discarded – undo
1100 1100
                             if (!$buildIt) {
1101 1101
                                 $source .= $methodWrap['docstring'];
1102 1102
                             }
1103
-                            $source .= $methodWrap['source'] . "\n";
1103
+                            $source .= $methodWrap['source']."\n";
1104 1104
                         } else {
1105
-                            $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': will not create class method to wrap remote method ' . $mName);
1105
+                            $this->getLogger()->errorLog('XML-RPC: '.__METHOD__.': will not create class method to wrap remote method '.$mName);
1106 1106
                         }
1107 1107
                     }
1108 1108
                 }
1109 1109
                 $source .= "}\n";
1110 1110
                 if ($buildIt) {
1111 1111
                     $allOK = 0;
1112
-                    eval($source . '$allOK=1;');
1112
+                    eval($source.'$allOK=1;');
1113 1113
                     if ($allOK) {
1114 1114
                         return $xmlrpcClassName;
1115 1115
                     } else {
1116
-                        $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': could not create class ' . $xmlrpcClassName . ' to wrap remote server ' . $client->server);
1116
+                        $this->getLogger()->errorLog('XML-RPC: '.__METHOD__.': could not create class '.$xmlrpcClassName.' to wrap remote server '.$client->server);
1117 1117
                         return false;
1118 1118
                     }
1119 1119
                 } else {
@@ -1134,10 +1134,10 @@  discard block
 block discarded – undo
1134 1134
      *
1135 1135
      * @return string
1136 1136
      */
1137
-    protected function buildClientWrapperCode($client, $verbatimClientCopy, $prefix = 'xmlrpc', $namespace = '\\PhpXmlRpc\\' )
1137
+    protected function buildClientWrapperCode($client, $verbatimClientCopy, $prefix = 'xmlrpc', $namespace = '\\PhpXmlRpc\\')
1138 1138
     {
1139
-        $code = "\$client = new {$namespace}Client('" . str_replace("'", "\'", $client->path) .
1140
-            "', '" . str_replace("'", "\'", $client->server) . "', $client->port);\n";
1139
+        $code = "\$client = new {$namespace}Client('".str_replace("'", "\'", $client->path).
1140
+            "', '".str_replace("'", "\'", $client->server)."', $client->port);\n";
1141 1141
 
1142 1142
         // copy all client fields to the client that will be generated runtime
1143 1143
         // (this provides for future expansion or subclassing of client obj)
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -591,8 +591,9 @@
 block discarded – undo
591 591
         }
592 592
         foreach ($parsVariations as $i => $pars) {
593 593
             $innerCode .= "if (\$paramCount == " . count($pars) . ") \$retval = {$catchWarnings}$realFuncName(" . implode(',', $pars) . ");\n";
594
-            if ($i < (count($parsVariations) - 1))
595
-                $innerCode .= "else\n";
594
+            if ($i < (count($parsVariations) - 1)) {
595
+                            $innerCode .= "else\n";
596
+            }
596 597
         }
597 598
         $innerCode .= "if (is_a(\$retval, '{$namespace}Response')) return \$retval; else\n";
598 599
         if ($funcDesc['returns'] == Value::$xmlrpcDateTime || $funcDesc['returns'] == Value::$xmlrpcBase64) {
Please login to merge, or discard this patch.
src/Helper/Http.php 1 patch
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -24,12 +24,12 @@  discard block
 block discarded – undo
24 24
 
25 25
         // read chunk-size, chunk-extension (if any) and crlf
26 26
         // get the position of the linebreak
27
-        $chunkEnd = strpos($buffer, "\r\n") + 2;
27
+        $chunkEnd = strpos($buffer, "\r\n")+2;
28 28
         $temp = substr($buffer, 0, $chunkEnd);
29 29
         $chunkSize = hexdec(trim($temp));
30 30
         $chunkStart = $chunkEnd;
31
-        while ($chunkSize > 0) {
32
-            $chunkEnd = strpos($buffer, "\r\n", $chunkStart + $chunkSize);
31
+        while ($chunkSize>0) {
32
+            $chunkEnd = strpos($buffer, "\r\n", $chunkStart+$chunkSize);
33 33
 
34 34
             // just in case we got a broken connection
35 35
             if ($chunkEnd == false) {
@@ -41,19 +41,19 @@  discard block
 block discarded – undo
41 41
             }
42 42
 
43 43
             // read chunk-data and crlf
44
-            $chunk = substr($buffer, $chunkStart, $chunkEnd - $chunkStart);
44
+            $chunk = substr($buffer, $chunkStart, $chunkEnd-$chunkStart);
45 45
             // append chunk-data to entity-body
46 46
             $new .= $chunk;
47 47
             // length := length + chunk-size
48 48
             $length += strlen($chunk);
49 49
             // read chunk-size and crlf
50
-            $chunkStart = $chunkEnd + 2;
50
+            $chunkStart = $chunkEnd+2;
51 51
 
52
-            $chunkEnd = strpos($buffer, "\r\n", $chunkStart) + 2;
52
+            $chunkEnd = strpos($buffer, "\r\n", $chunkStart)+2;
53 53
             if ($chunkEnd == false) {
54 54
                 break; //just in case we got a broken connection
55 55
             }
56
-            $temp = substr($buffer, $chunkStart, $chunkEnd - $chunkStart);
56
+            $temp = substr($buffer, $chunkStart, $chunkEnd-$chunkStart);
57 57
             $chunkSize = hexdec(trim($temp));
58 58
             $chunkStart = $chunkEnd;
59 59
         }
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      * @return array with keys 'headers', 'cookies', 'raw_data' and 'status_code'
71 71
      * @throws HttpException
72 72
      */
73
-    public function parseResponseHeaders(&$data, $headersProcessed = false, $debug=0)
73
+    public function parseResponseHeaders(&$data, $headersProcessed = false, $debug = 0)
74 74
     {
75 75
         $httpResponse = array('raw_data' => $data, 'headers'=> array(), 'cookies' => array(), 'status_code' => null);
76 76
 
@@ -80,11 +80,11 @@  discard block
 block discarded – undo
80 80
             // (even though it is not valid http)
81 81
             $pos = strpos($data, "\r\n\r\n");
82 82
             if ($pos || is_int($pos)) {
83
-                $bd = $pos + 4;
83
+                $bd = $pos+4;
84 84
             } else {
85 85
                 $pos = strpos($data, "\n\n");
86 86
                 if ($pos || is_int($pos)) {
87
-                    $bd = $pos + 2;
87
+                    $bd = $pos+2;
88 88
                 } else {
89 89
                     // No separation between response headers and body: fault?
90 90
                     $bd = 0;
@@ -95,8 +95,8 @@  discard block
 block discarded – undo
95 95
                 // maybe we could take them into account, too?
96 96
                 $data = substr($data, $bd);
97 97
             } else {
98
-                Logger::instance()->errorLog('XML-RPC: ' . __METHOD__ . ': HTTPS via proxy error, tunnel connection possibly failed');
99
-                throw new HttpException(PhpXmlRpc::$xmlrpcstr['http_error'] . ' (HTTPS via proxy error, tunnel connection possibly failed)', PhpXmlRpc::$xmlrpcerr['http_error']);
98
+                Logger::instance()->errorLog('XML-RPC: '.__METHOD__.': HTTPS via proxy error, tunnel connection possibly failed');
99
+                throw new HttpException(PhpXmlRpc::$xmlrpcstr['http_error'].' (HTTPS via proxy error, tunnel connection possibly failed)', PhpXmlRpc::$xmlrpcerr['http_error']);
100 100
             }
101 101
         }
102 102
 
@@ -126,20 +126,20 @@  discard block
 block discarded – undo
126 126
         }
127 127
 
128 128
         if ($httpResponse['status_code'] !== '200') {
129
-            $errstr = substr($data, 0, strpos($data, "\n") - 1);
130
-            Logger::instance()->errorLog('XML-RPC: ' . __METHOD__ . ': HTTP error, got response: ' . $errstr);
131
-            throw new HttpException(PhpXmlRpc::$xmlrpcstr['http_error'] . ' (' . $errstr . ')', PhpXmlRpc::$xmlrpcerr['http_error'], null, $httpResponse['status_code'] );
129
+            $errstr = substr($data, 0, strpos($data, "\n")-1);
130
+            Logger::instance()->errorLog('XML-RPC: '.__METHOD__.': HTTP error, got response: '.$errstr);
131
+            throw new HttpException(PhpXmlRpc::$xmlrpcstr['http_error'].' ('.$errstr.')', PhpXmlRpc::$xmlrpcerr['http_error'], null, $httpResponse['status_code']);
132 132
         }
133 133
 
134 134
         // be tolerant to usage of \n instead of \r\n to separate headers and data
135 135
         // (even though it is not valid http)
136 136
         $pos = strpos($data, "\r\n\r\n");
137 137
         if ($pos || is_int($pos)) {
138
-            $bd = $pos + 4;
138
+            $bd = $pos+4;
139 139
         } else {
140 140
             $pos = strpos($data, "\n\n");
141 141
             if ($pos || is_int($pos)) {
142
-                $bd = $pos + 2;
142
+                $bd = $pos+2;
143 143
             } else {
144 144
                 // No separation between response headers and body: fault?
145 145
                 // we could take some action here instead of going on...
@@ -150,10 +150,10 @@  discard block
 block discarded – undo
150 150
         // be tolerant to line endings, and extra empty lines
151 151
         $ar = preg_split("/\r?\n/", trim(substr($data, 0, $pos)));
152 152
 
153
-        foreach($ar as $line) {
153
+        foreach ($ar as $line) {
154 154
             // take care of multi-line headers and cookies
155 155
             $arr = explode(':', $line, 2);
156
-            if (count($arr) > 1) {
156
+            if (count($arr)>1) {
157 157
                 $headerName = strtolower(trim($arr[0]));
158 158
                 /// @todo some other headers (the ones that allow a CSV list of values)
159 159
                 ///       do allow many values to be passed using multiple header lines.
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
                         // glue together all received cookies, using a comma to separate them
173 173
                         // (same as php does with getallheaders())
174 174
                         if (isset($httpResponse['headers'][$headerName])) {
175
-                            $httpResponse['headers'][$headerName] .= ', ' . trim($cookie);
175
+                            $httpResponse['headers'][$headerName] .= ', '.trim($cookie);
176 176
                         } else {
177 177
                             $httpResponse['headers'][$headerName] = trim($cookie);
178 178
                         }
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
                 }
202 202
             } elseif (isset($headerName)) {
203 203
                 /// @todo version1 cookies might span multiple lines, thus breaking the parsing above
204
-                $httpResponse['headers'][$headerName] .= ' ' . trim($line);
204
+                $httpResponse['headers'][$headerName] .= ' '.trim($line);
205 205
             }
206 206
         }
207 207
 
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
             // Decode chunked encoding sent by http 1.1 servers
226 226
             if (isset($httpResponse['headers']['transfer-encoding']) && $httpResponse['headers']['transfer-encoding'] == 'chunked') {
227 227
                 if (!$data = static::decodeChunked($data)) {
228
-                    Logger::instance()->errorLog('XML-RPC: ' . __METHOD__ . ': errors occurred when trying to rebuild the chunked data received from server');
228
+                    Logger::instance()->errorLog('XML-RPC: '.__METHOD__.': errors occurred when trying to rebuild the chunked data received from server');
229 229
                     throw new HttpException(PhpXmlRpc::$xmlrpcstr['dechunk_fail'], PhpXmlRpc::$xmlrpcerr['dechunk_fail'], null, $httpResponse['status_code']);
230 230
                 }
231 231
             }
@@ -240,19 +240,19 @@  discard block
 block discarded – undo
240 240
                         if ($httpResponse['headers']['content-encoding'] == 'deflate' && $degzdata = @gzuncompress($data)) {
241 241
                             $data = $degzdata;
242 242
                             if ($debug) {
243
-                                Logger::instance()->debugMessage("---INFLATED RESPONSE---[" . strlen($data) . " chars]---\n$data\n---END---");
243
+                                Logger::instance()->debugMessage("---INFLATED RESPONSE---[".strlen($data)." chars]---\n$data\n---END---");
244 244
                             }
245 245
                         } elseif ($httpResponse['headers']['content-encoding'] == 'gzip' && $degzdata = @gzinflate(substr($data, 10))) {
246 246
                             $data = $degzdata;
247 247
                             if ($debug) {
248
-                                Logger::instance()->debugMessage("---INFLATED RESPONSE---[" . strlen($data) . " chars]---\n$data\n---END---");
248
+                                Logger::instance()->debugMessage("---INFLATED RESPONSE---[".strlen($data)." chars]---\n$data\n---END---");
249 249
                             }
250 250
                         } else {
251
-                            Logger::instance()->errorLog('XML-RPC: ' . __METHOD__ . ': errors occurred when trying to decode the deflated data received from server');
251
+                            Logger::instance()->errorLog('XML-RPC: '.__METHOD__.': errors occurred when trying to decode the deflated data received from server');
252 252
                             throw new HttpException(PhpXmlRpc::$xmlrpcstr['decompress_fail'], PhpXmlRpc::$xmlrpcerr['decompress_fail'], null, $httpResponse['status_code']);
253 253
                         }
254 254
                     } else {
255
-                        Logger::instance()->errorLog('XML-RPC: ' . __METHOD__ . ': the server sent deflated data. Your php install must have the Zlib extension compiled in to support this.');
255
+                        Logger::instance()->errorLog('XML-RPC: '.__METHOD__.': the server sent deflated data. Your php install must have the Zlib extension compiled in to support this.');
256 256
                         throw new HttpException(PhpXmlRpc::$xmlrpcstr['cannot_decompress'], PhpXmlRpc::$xmlrpcerr['cannot_decompress'], null, $httpResponse['status_code']);
257 257
                     }
258 258
                 }
Please login to merge, or discard this patch.
src/Client.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -951,9 +951,9 @@
 block discarded – undo
951 951
     }
952 952
 
953 953
     protected function prepareCurlHandle($req, $server, $port, $timeout = 0, $username = '', $password = '',
954
-         $authType = 1, $cert = '', $certPass = '', $caCert = '', $caCertDir = '', $proxyHost = '', $proxyPort = 0,
955
-         $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $method = 'https', $keepAlive = false, $key = '',
956
-         $keyPass = '', $sslVersion = 0)
954
+            $authType = 1, $cert = '', $certPass = '', $caCert = '', $caCertDir = '', $proxyHost = '', $proxyPort = 0,
955
+            $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $method = 'https', $keepAlive = false, $key = '',
956
+            $keyPass = '', $sslVersion = 0)
957 957
     {
958 958
         if ($port == 0) {
959 959
             if (in_array($method, array('http', 'http10', 'http11', 'h2c'))) {
Please login to merge, or discard this patch.
Spacing   +64 added lines, -64 removed lines patch added patch discarded remove patch
@@ -157,10 +157,10 @@  discard block
 block discarded – undo
157 157
             $server = $parts['host'];
158 158
             $path = isset($parts['path']) ? $parts['path'] : '';
159 159
             if (isset($parts['query'])) {
160
-                $path .= '?' . $parts['query'];
160
+                $path .= '?'.$parts['query'];
161 161
             }
162 162
             if (isset($parts['fragment'])) {
163
-                $path .= '#' . $parts['fragment'];
163
+                $path .= '#'.$parts['fragment'];
164 164
             }
165 165
             if (isset($parts['port'])) {
166 166
                 $port = $parts['port'];
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
             }
177 177
         }
178 178
         if ($path == '' || $path[0] != '/') {
179
-            $this->path = '/' . $path;
179
+            $this->path = '/'.$path;
180 180
         } else {
181 181
             $this->path = $path;
182 182
         }
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
         }*/
215 215
 
216 216
         // initialize user_agent string
217
-        $this->user_agent = PhpXmlRpc::$xmlrpcName . ' ' . PhpXmlRpc::$xmlrpcVersion;
217
+        $this->user_agent = PhpXmlRpc::$xmlrpcName.' '.PhpXmlRpc::$xmlrpcVersion;
218 218
     }
219 219
 
220 220
     /**
@@ -592,7 +592,7 @@  discard block
 block discarded – undo
592 592
      */
593 593
     protected function sendPayloadHTTP10($req, $server, $port, $timeout = 0, $username = '', $password = '',
594 594
         $authType = 1, $proxyHost = '', $proxyPort = 0, $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1,
595
-        $method='http')
595
+        $method = 'http')
596 596
     {
597 597
         //trigger_error('Method ' . __METHOD__ . ' is deprecated', E_USER_DEPRECATED);
598 598
 
@@ -624,7 +624,7 @@  discard block
 block discarded – undo
624 624
      * @param int $sslVersion
625 625
      * @return Response
626 626
      */
627
-    protected function sendPayloadHTTPS($req, $server, $port, $timeout = 0, $username = '',  $password = '',
627
+    protected function sendPayloadHTTPS($req, $server, $port, $timeout = 0, $username = '', $password = '',
628 628
         $authType = 1, $cert = '', $certPass = '', $caCert = '', $caCertDir = '', $proxyHost = '', $proxyPort = 0,
629 629
         $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $keepAlive = false, $key = '', $keyPass = '',
630 630
         $sslVersion = 0)
@@ -663,13 +663,13 @@  discard block
 block discarded – undo
663 663
      */
664 664
     protected function sendPayloadSocket($req, $server, $port, $timeout = 0, $username = '', $password = '',
665 665
         $authType = 1, $cert = '', $certPass = '', $caCert = '', $caCertDir = '', $proxyHost = '', $proxyPort = 0,
666
-        $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $method='http', $key = '', $keyPass = '',
666
+        $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $method = 'http', $key = '', $keyPass = '',
667 667
         $sslVersion = 0)
668 668
     {
669 669
         /// @todo log a warning if passed an unsupported method
670 670
 
671 671
         if ($port == 0) {
672
-            $port = ( $method === 'https' ) ? 443 : 80;
672
+            $port = ($method === 'https') ? 443 : 80;
673 673
         }
674 674
 
675 675
         // Only create the payload if it was not created previously
@@ -699,15 +699,15 @@  discard block
 block discarded – undo
699 699
         // thanks to Grant Rauscher <[email protected]> for this
700 700
         $credentials = '';
701 701
         if ($username != '') {
702
-            $credentials = 'Authorization: Basic ' . base64_encode($username . ':' . $password) . "\r\n";
702
+            $credentials = 'Authorization: Basic '.base64_encode($username.':'.$password)."\r\n";
703 703
             if ($authType != 1) {
704
-                $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth is supported with HTTP 1.0');
704
+                $this->getLogger()->errorLog('XML-RPC: '.__METHOD__.': warning. Only Basic auth is supported with HTTP 1.0');
705 705
             }
706 706
         }
707 707
 
708 708
         $acceptedEncoding = '';
709 709
         if (is_array($this->accepted_compression) && count($this->accepted_compression)) {
710
-            $acceptedEncoding = 'Accept-Encoding: ' . implode(', ', $this->accepted_compression) . "\r\n";
710
+            $acceptedEncoding = 'Accept-Encoding: '.implode(', ', $this->accepted_compression)."\r\n";
711 711
         }
712 712
 
713 713
         $proxyCredentials = '';
@@ -718,17 +718,17 @@  discard block
 block discarded – undo
718 718
             $connectServer = $proxyHost;
719 719
             $connectPort = $proxyPort;
720 720
             $transport = 'tcp';
721
-            $uri = 'http://' . $server . ':' . $port . $this->path;
721
+            $uri = 'http://'.$server.':'.$port.$this->path;
722 722
             if ($proxyUsername != '') {
723 723
                 if ($proxyAuthType != 1) {
724
-                    $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth to proxy is supported with HTTP 1.0');
724
+                    $this->getLogger()->errorLog('XML-RPC: '.__METHOD__.': warning. Only Basic auth to proxy is supported with HTTP 1.0');
725 725
                 }
726
-                $proxyCredentials = 'Proxy-Authorization: Basic ' . base64_encode($proxyUsername . ':' . $proxyPassword) . "\r\n";
726
+                $proxyCredentials = 'Proxy-Authorization: Basic '.base64_encode($proxyUsername.':'.$proxyPassword)."\r\n";
727 727
             }
728 728
         } else {
729 729
             $connectServer = $server;
730 730
             $connectPort = $port;
731
-            $transport = ( $method === 'https' ) ? 'tls' : 'tcp';
731
+            $transport = ($method === 'https') ? 'tls' : 'tcp';
732 732
             $uri = $this->path;
733 733
         }
734 734
 
@@ -738,45 +738,45 @@  discard block
 block discarded – undo
738 738
             $version = '';
739 739
             foreach ($this->cookies as $name => $cookie) {
740 740
                 if ($cookie['version']) {
741
-                    $version = ' $Version="' . $cookie['version'] . '";';
742
-                    $cookieHeader .= ' ' . $name . '="' . $cookie['value'] . '";';
741
+                    $version = ' $Version="'.$cookie['version'].'";';
742
+                    $cookieHeader .= ' '.$name.'="'.$cookie['value'].'";';
743 743
                     if ($cookie['path']) {
744
-                        $cookieHeader .= ' $Path="' . $cookie['path'] . '";';
744
+                        $cookieHeader .= ' $Path="'.$cookie['path'].'";';
745 745
                     }
746 746
                     if ($cookie['domain']) {
747
-                        $cookieHeader .= ' $Domain="' . $cookie['domain'] . '";';
747
+                        $cookieHeader .= ' $Domain="'.$cookie['domain'].'";';
748 748
                     }
749 749
                     if ($cookie['port']) {
750
-                        $cookieHeader .= ' $Port="' . $cookie['port'] . '";';
750
+                        $cookieHeader .= ' $Port="'.$cookie['port'].'";';
751 751
                     }
752 752
                 } else {
753
-                    $cookieHeader .= ' ' . $name . '=' . $cookie['value'] . ";";
753
+                    $cookieHeader .= ' '.$name.'='.$cookie['value'].";";
754 754
                 }
755 755
             }
756
-            $cookieHeader = 'Cookie:' . $version . substr($cookieHeader, 0, -1) . "\r\n";
756
+            $cookieHeader = 'Cookie:'.$version.substr($cookieHeader, 0, -1)."\r\n";
757 757
         }
758 758
 
759 759
         // omit port if default
760 760
         if (($port == 80 && in_array($method, array('http', 'http10'))) || ($port == 443 && $method == 'https')) {
761
-            $port =  '';
761
+            $port = '';
762 762
         } else {
763
-            $port = ':' . $port;
763
+            $port = ':'.$port;
764 764
         }
765 765
 
766
-        $op = 'POST ' . $uri . " HTTP/1.0\r\n" .
767
-            'User-Agent: ' . $this->user_agent . "\r\n" .
768
-            'Host: ' . $server . $port . "\r\n" .
769
-            $credentials .
770
-            $proxyCredentials .
771
-            $acceptedEncoding .
772
-            $encodingHdr .
773
-            'Accept-Charset: ' . implode(',', $this->accepted_charset_encodings) . "\r\n" .
774
-            $cookieHeader .
775
-            'Content-Type: ' . $req->content_type . "\r\nContent-Length: " .
776
-            strlen($payload) . "\r\n\r\n" .
766
+        $op = 'POST '.$uri." HTTP/1.0\r\n".
767
+            'User-Agent: '.$this->user_agent."\r\n".
768
+            'Host: '.$server.$port."\r\n".
769
+            $credentials.
770
+            $proxyCredentials.
771
+            $acceptedEncoding.
772
+            $encodingHdr.
773
+            'Accept-Charset: '.implode(',', $this->accepted_charset_encodings)."\r\n".
774
+            $cookieHeader.
775
+            'Content-Type: '.$req->content_type."\r\nContent-Length: ".
776
+            strlen($payload)."\r\n\r\n".
777 777
             $payload;
778 778
 
779
-        if ($this->debug > 1) {
779
+        if ($this->debug>1) {
780 780
             $this->getLogger()->debugMessage("---SENDING---\n$op\n---END---");
781 781
         }
782 782
 
@@ -803,7 +803,7 @@  discard block
 block discarded – undo
803 803
 
804 804
         $context = stream_context_create($contextOptions);
805 805
 
806
-        if ($timeout <= 0) {
806
+        if ($timeout<=0) {
807 807
             $connectTimeout = ini_get('default_socket_timeout');
808 808
         } else {
809 809
             $connectTimeout = $timeout;
@@ -815,7 +815,7 @@  discard block
 block discarded – undo
815 815
         $fp = @stream_socket_client("$transport://$connectServer:$connectPort", $this->errno, $this->errstr, $connectTimeout,
816 816
             STREAM_CLIENT_CONNECT, $context);
817 817
         if ($fp) {
818
-            if ($timeout > 0) {
818
+            if ($timeout>0) {
819 819
                 stream_set_timeout($fp, $timeout);
820 820
             }
821 821
         } else {
@@ -824,8 +824,8 @@  discard block
 block discarded – undo
824 824
                 $this->errstr = $err['message'];
825 825
             }
826 826
 
827
-            $this->errstr = 'Connect error: ' . $this->errstr;
828
-            $r = new Response(0, PhpXmlRpc::$xmlrpcerr['http_error'], $this->errstr . ' (' . $this->errno . ')');
827
+            $this->errstr = 'Connect error: '.$this->errstr;
828
+            $r = new Response(0, PhpXmlRpc::$xmlrpcerr['http_error'], $this->errstr.' ('.$this->errno.')');
829 829
 
830 830
             return $r;
831 831
         }
@@ -914,13 +914,13 @@  discard block
 block discarded – undo
914 914
 
915 915
         $result = curl_exec($curl);
916 916
 
917
-        if ($this->debug > 1) {
917
+        if ($this->debug>1) {
918 918
             $message = "---CURL INFO---\n";
919 919
             foreach (curl_getinfo($curl) as $name => $val) {
920 920
                 if (is_array($val)) {
921 921
                     $val = implode("\n", $val);
922 922
                 }
923
-                $message .= $name . ': ' . $val . "\n";
923
+                $message .= $name.': '.$val."\n";
924 924
             }
925 925
             $message .= '---END---';
926 926
             $this->getLogger()->debugMessage($message);
@@ -930,7 +930,7 @@  discard block
 block discarded – undo
930 930
             /// @todo we should use a better check here - what if we get back '' or '0'?
931 931
 
932 932
             $this->errstr = 'no response';
933
-            $resp = new Response(0, PhpXmlRpc::$xmlrpcerr['curl_fail'], PhpXmlRpc::$xmlrpcstr['curl_fail'] . ': ' . curl_error($curl));
933
+            $resp = new Response(0, PhpXmlRpc::$xmlrpcerr['curl_fail'], PhpXmlRpc::$xmlrpcstr['curl_fail'].': '.curl_error($curl));
934 934
             curl_close($curl);
935 935
             if ($keepAlive) {
936 936
                 $this->xmlrpc_curl_handle = null;
@@ -999,7 +999,7 @@  discard block
 block discarded – undo
999 999
                     $protocol = $method;
1000 1000
                 }
1001 1001
             }
1002
-            $curl = curl_init($protocol . '://' . $server . ':' . $port . $this->path);
1002
+            $curl = curl_init($protocol.'://'.$server.':'.$port.$this->path);
1003 1003
             if ($keepAlive) {
1004 1004
                 $this->xmlrpc_curl_handle = $curl;
1005 1005
             }
@@ -1010,7 +1010,7 @@  discard block
 block discarded – undo
1010 1010
         // results into variable
1011 1011
         curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
1012 1012
 
1013
-        if ($this->debug > 1) {
1013
+        if ($this->debug>1) {
1014 1014
             curl_setopt($curl, CURLOPT_VERBOSE, true);
1015 1015
             /// @todo allow callers to redirect curlopt_stderr to some stream which can be buffered
1016 1016
         }
@@ -1035,7 +1035,7 @@  discard block
 block discarded – undo
1035 1035
             }
1036 1036
         }
1037 1037
         // extra headers
1038
-        $headers = array('Content-Type: ' . $req->content_type, 'Accept-Charset: ' . implode(',', $this->accepted_charset_encodings));
1038
+        $headers = array('Content-Type: '.$req->content_type, 'Accept-Charset: '.implode(',', $this->accepted_charset_encodings));
1039 1039
         // if no keepalive is wanted, let the server know it in advance
1040 1040
         if (!$keepAlive) {
1041 1041
             $headers[] = 'Connection: close';
@@ -1052,10 +1052,10 @@  discard block
 block discarded – undo
1052 1052
         curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
1053 1053
         // timeout is borked
1054 1054
         if ($timeout) {
1055
-            curl_setopt($curl, CURLOPT_TIMEOUT, $timeout == 1 ? 1 : $timeout - 1);
1055
+            curl_setopt($curl, CURLOPT_TIMEOUT, $timeout == 1 ? 1 : $timeout-1);
1056 1056
         }
1057 1057
 
1058
-        switch($method) {
1058
+        switch ($method) {
1059 1059
             case 'http10':
1060 1060
                 curl_setopt($curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
1061 1061
                 break;
@@ -1071,11 +1071,11 @@  discard block
 block discarded – undo
1071 1071
         }
1072 1072
 
1073 1073
         if ($username && $password) {
1074
-            curl_setopt($curl, CURLOPT_USERPWD, $username . ':' . $password);
1074
+            curl_setopt($curl, CURLOPT_USERPWD, $username.':'.$password);
1075 1075
             if (defined('CURLOPT_HTTPAUTH')) {
1076 1076
                 curl_setopt($curl, CURLOPT_HTTPAUTH, $authType);
1077 1077
             } elseif ($authType != 1) {
1078
-                $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth is supported by the current PHP/curl install');
1078
+                $this->getLogger()->errorLog('XML-RPC: '.__METHOD__.': warning. Only Basic auth is supported by the current PHP/curl install');
1079 1079
             }
1080 1080
         }
1081 1081
 
@@ -1117,13 +1117,13 @@  discard block
 block discarded – undo
1117 1117
             if ($proxyPort == 0) {
1118 1118
                 $proxyPort = 8080; // NB: even for HTTPS, local connection is on port 8080
1119 1119
             }
1120
-            curl_setopt($curl, CURLOPT_PROXY, $proxyHost . ':' . $proxyPort);
1120
+            curl_setopt($curl, CURLOPT_PROXY, $proxyHost.':'.$proxyPort);
1121 1121
             if ($proxyUsername) {
1122
-                curl_setopt($curl, CURLOPT_PROXYUSERPWD, $proxyUsername . ':' . $proxyPassword);
1122
+                curl_setopt($curl, CURLOPT_PROXYUSERPWD, $proxyUsername.':'.$proxyPassword);
1123 1123
                 if (defined('CURLOPT_PROXYAUTH')) {
1124 1124
                     curl_setopt($curl, CURLOPT_PROXYAUTH, $proxyAuthType);
1125 1125
                 } elseif ($proxyAuthType != 1) {
1126
-                    $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth to proxy is supported by the current PHP/curl install');
1126
+                    $this->getLogger()->errorLog('XML-RPC: '.__METHOD__.': warning. Only Basic auth to proxy is supported by the current PHP/curl install');
1127 1127
                 }
1128 1128
             }
1129 1129
         }
@@ -1133,7 +1133,7 @@  discard block
 block discarded – undo
1133 1133
         if (count($this->cookies)) {
1134 1134
             $cookieHeader = '';
1135 1135
             foreach ($this->cookies as $name => $cookie) {
1136
-                $cookieHeader .= $name . '=' . $cookie['value'] . '; ';
1136
+                $cookieHeader .= $name.'='.$cookie['value'].'; ';
1137 1137
             }
1138 1138
             curl_setopt($curl, CURLOPT_COOKIE, substr($cookieHeader, 0, -2));
1139 1139
         }
@@ -1142,7 +1142,7 @@  discard block
 block discarded – undo
1142 1142
             curl_setopt($curl, $opt, $val);
1143 1143
         }
1144 1144
 
1145
-        if ($this->debug > 1) {
1145
+        if ($this->debug>1) {
1146 1146
             $this->getLogger()->debugMessage("---SENDING---\n$payload\n---END---");
1147 1147
         }
1148 1148
 
@@ -1240,7 +1240,7 @@  discard block
 block discarded – undo
1240 1240
             $call['methodName'] = new Value($req->method(), 'string');
1241 1241
             $numParams = $req->getNumParams();
1242 1242
             $params = array();
1243
-            for ($i = 0; $i < $numParams; $i++) {
1243
+            for ($i = 0; $i<$numParams; $i++) {
1244 1244
                 $params[$i] = $req->getParam($i);
1245 1245
             }
1246 1246
             $call['params'] = new Value($params, 'array');
@@ -1266,15 +1266,15 @@  discard block
 block discarded – undo
1266 1266
             /// @todo test this code branch...
1267 1267
             $rets = $result->value();
1268 1268
             if (!is_array($rets)) {
1269
-                return false;       // bad return type from system.multicall
1269
+                return false; // bad return type from system.multicall
1270 1270
             }
1271 1271
             $numRets = count($rets);
1272 1272
             if ($numRets != count($reqs)) {
1273
-                return false;       // wrong number of return values.
1273
+                return false; // wrong number of return values.
1274 1274
             }
1275 1275
 
1276 1276
             $response = array();
1277
-            for ($i = 0; $i < $numRets; $i++) {
1277
+            for ($i = 0; $i<$numRets; $i++) {
1278 1278
                 $val = $rets[$i];
1279 1279
                 if (!is_array($val)) {
1280 1280
                     return false;
@@ -1282,7 +1282,7 @@  discard block
 block discarded – undo
1282 1282
                 switch (count($val)) {
1283 1283
                     case 1:
1284 1284
                         if (!isset($val[0])) {
1285
-                            return false;       // Bad value
1285
+                            return false; // Bad value
1286 1286
                         }
1287 1287
                         // Normal return value
1288 1288
                         $response[$i] = new Response($val[0], 0, '', 'phpvals');
@@ -1310,19 +1310,19 @@  discard block
 block discarded – undo
1310 1310
 
1311 1311
             $rets = $result->value();
1312 1312
             if ($rets->kindOf() != 'array') {
1313
-                return false;       // bad return type from system.multicall
1313
+                return false; // bad return type from system.multicall
1314 1314
             }
1315 1315
             $numRets = $rets->count();
1316 1316
             if ($numRets != count($reqs)) {
1317
-                return false;       // wrong number of return values.
1317
+                return false; // wrong number of return values.
1318 1318
             }
1319 1319
 
1320 1320
             $response = array();
1321
-            foreach($rets as $val) {
1321
+            foreach ($rets as $val) {
1322 1322
                 switch ($val->kindOf()) {
1323 1323
                     case 'array':
1324 1324
                         if ($val->count() != 1) {
1325
-                            return false;       // Bad value
1325
+                            return false; // Bad value
1326 1326
                         }
1327 1327
                         // Normal return value
1328 1328
                         $response[] = new Response($val[0]);
Please login to merge, or discard this patch.
demo/vardemo.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-require_once __DIR__ . "/client/_prepend.php";
2
+require_once __DIR__."/client/_prepend.php";
3 3
 
4 4
 output('html lang="en">
5 5
 <head><title>xmlrpc</title></head>
@@ -11,9 +11,9 @@  discard block
 block discarded – undo
11 11
 output("<h3>Testing value serialization</h3>\n");
12 12
 
13 13
 $v = new PhpXmlRpc\Value(23, "int");
14
-output("<PRE>" . htmlentities($v->serialize()) . "</PRE>");
14
+output("<PRE>".htmlentities($v->serialize())."</PRE>");
15 15
 $v = new PhpXmlRpc\Value("What are you saying? >> << &&");
16
-output("<PRE>" . htmlentities($v->serialize()) . "</PRE>");
16
+output("<PRE>".htmlentities($v->serialize())."</PRE>");
17 17
 
18 18
 $v = new PhpXmlRpc\Value(
19 19
     array(
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     "array"
25 25
 );
26 26
 
27
-output("<PRE>" . htmlentities($v->serialize()) . "</PRE>");
27
+output("<PRE>".htmlentities($v->serialize())."</PRE>");
28 28
 
29 29
 $v = new PhpXmlRpc\Value(
30 30
     array(
@@ -52,11 +52,11 @@  discard block
 block discarded – undo
52 52
     "struct"
53 53
 );
54 54
 
55
-output("<PRE>" . htmlentities($v->serialize()) . "</PRE>");
55
+output("<PRE>".htmlentities($v->serialize())."</PRE>");
56 56
 
57 57
 $w = new PhpXmlRpc\Value(array($v, new PhpXmlRpc\Value("That was the struct!")), "array");
58 58
 
59
-output("<PRE>" . htmlentities($w->serialize()) . "</PRE>");
59
+output("<PRE>".htmlentities($w->serialize())."</PRE>");
60 60
 
61 61
 $w = new PhpXmlRpc\Value("Mary had a little lamb,
62 62
 Whose fleece was white as snow,
@@ -68,29 +68,29 @@  discard block
 block discarded – undo
68 68
 Ten thousand volts went down its back
69 69
 And turned it into nylon", "base64"
70 70
 );
71
-output("<PRE>" . htmlentities($w->serialize()) . "</PRE>");
72
-output("<PRE>Value of base64 string is: '" . $w->scalarval() . "'</PRE>");
71
+output("<PRE>".htmlentities($w->serialize())."</PRE>");
72
+output("<PRE>Value of base64 string is: '".$w->scalarval()."'</PRE>");
73 73
 
74 74
 $req->method('');
75 75
 $req->addParam(new PhpXmlRpc\Value("41", "int"));
76 76
 
77 77
 output("<h3>Testing request serialization</h3>\n");
78 78
 $op = $req->serialize();
79
-output("<PRE>" . htmlentities($op) . "</PRE>");
79
+output("<PRE>".htmlentities($op)."</PRE>");
80 80
 
81 81
 output("<h3>Testing ISO date format</h3><pre>\n");
82 82
 
83 83
 $t = time();
84 84
 $date = PhpXmlRpc\Helper\Date::iso8601Encode($t);
85 85
 output("Now is $t --> $date\n");
86
-output("Or in UTC, that is " . PhpXmlRpc\Helper\Date::iso8601Encode($t, 1) . "\n");
86
+output("Or in UTC, that is ".PhpXmlRpc\Helper\Date::iso8601Encode($t, 1)."\n");
87 87
 $tb = PhpXmlRpc\Helper\Date::iso8601Decode($date);
88 88
 output("That is to say $date --> $tb\n");
89
-output("Which comes out at " . PhpXmlRpc\Helper\Date::iso8601Encode($tb) . "\n");
90
-output("Which was the time in UTC at " . PhpXmlRpc\Helper\Date::iso8601Encode($tb, 1) . "\n");
89
+output("Which comes out at ".PhpXmlRpc\Helper\Date::iso8601Encode($tb)."\n");
90
+output("Which was the time in UTC at ".PhpXmlRpc\Helper\Date::iso8601Encode($tb, 1)."\n");
91 91
 
92 92
 output("</pre>\n");
93 93
 
94 94
 output('</body></html>');
95 95
 
96
-require_once __DIR__ . "/client/_append.php";
96
+require_once __DIR__."/client/_append.php";
Please login to merge, or discard this patch.
demo/server/proxy.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  * @license code licensed under the BSD License: see file license.txt
11 11
  */
12 12
 
13
-require_once __DIR__ . "/_prepend.php";
13
+require_once __DIR__."/_prepend.php";
14 14
 
15 15
 /**
16 16
  * Forward an xmlrpc request to another server, and return to client the response received.
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     // NB: here we should validate the received url, using f.e. a whitelist...
32 32
     $client = new PhpXmlRpc\Client($url);
33 33
 
34
-    if ($req->getNumParams() > 3) {
34
+    if ($req->getNumParams()>3) {
35 35
         // we have to set some options onto the client.
36 36
         // Note that if we do not untaint the received values, warnings might be generated...
37 37
         $options = $encoder->decode($req->getParam(3));
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
                     $client->setSSLVerifyPeer($val);
52 52
                     break;
53 53
                 case 'Timeout':
54
-                    $timeout = (integer)$val;
54
+                    $timeout = (integer) $val;
55 55
                     break;
56 56
             } // switch
57 57
         }
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     }
70 70
 
71 71
     // add debug info into response we give back to caller
72
-    PhpXmlRpc\Server::xmlrpc_debugmsg("Sending to server $url the payload: " . $req->serialize());
72
+    PhpXmlRpc\Server::xmlrpc_debugmsg("Sending to server $url the payload: ".$req->serialize());
73 73
 
74 74
     return $client->send($req, $timeout);
75 75
 }
@@ -90,4 +90,4 @@  discard block
 block discarded – undo
90 90
     )
91 91
 );
92 92
 
93
-require_once __DIR__ . "/_append.php";
93
+require_once __DIR__."/_append.php";
Please login to merge, or discard this patch.
demo/server/discuss.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * It uses a Berkeley DB database for storage.
5 5
  */
6 6
 
7
-require_once __DIR__ . "/_prepend.php";
7
+require_once __DIR__."/_prepend.php";
8 8
 
9 9
 use PhpXmlRpc\Value;
10 10
 
@@ -35,8 +35,8 @@  discard block
 block discarded – undo
35 35
             $count = 0;
36 36
         }
37 37
         // add the new comment in
38
-        dba_insert($msgID . "_comment_${count}", $comment, $dbh);
39
-        dba_insert($msgID . "_name_${count}", $name, $dbh);
38
+        dba_insert($msgID."_comment_${count}", $comment, $dbh);
39
+        dba_insert($msgID."_name_${count}", $name, $dbh);
40 40
         $count++;
41 41
         dba_replace($countID, $count, $dbh);
42 42
         dba_close($dbh);
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         $countID = "${msgID}_count";
70 70
         if (dba_exists($countID, $dbh)) {
71 71
             $count = dba_fetch($countID, $dbh);
72
-            for ($i = 0; $i < $count; $i++) {
72
+            for ($i = 0; $i<$count; $i++) {
73 73
                 $name = dba_fetch("${msgID}_name_${i}", $dbh);
74 74
                 $comment = dba_fetch("${msgID}_comment_${i}", $dbh);
75 75
                 // push a new struct onto the return array
@@ -107,4 +107,4 @@  discard block
 block discarded – undo
107 107
     ),
108 108
 ));
109 109
 
110
-require_once __DIR__ . "/_append.php";
110
+require_once __DIR__."/_append.php";
Please login to merge, or discard this patch.
demo/client/getstatename.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-require_once __DIR__ . "/_prepend.php";
2
+require_once __DIR__."/_prepend.php";
3 3
 
4 4
 output('<html lang="en">
5 5
 <head><title>xmlrpc - Getstatename demo</title></head>
@@ -11,34 +11,34 @@  discard block
 block discarded – undo
11 11
 ');
12 12
 
13 13
 if (isset($_POST["stateno"]) && $_POST["stateno"] != "") {
14
-    $stateNo = (integer)$_POST["stateno"];
14
+    $stateNo = (integer) $_POST["stateno"];
15 15
     $encoder = new PhpXmlRpc\Encoder();
16 16
     $req = new PhpXmlRpc\Request('examples.getStateName',
17 17
         array($encoder->encode($stateNo))
18 18
     );
19
-    output("Sending the following request:<pre>\n\n" . htmlentities($req->serialize()) . "\n\n</pre>Debug info of server data follows...\n\n");
19
+    output("Sending the following request:<pre>\n\n".htmlentities($req->serialize())."\n\n</pre>Debug info of server data follows...\n\n");
20 20
     $client = new PhpXmlRpc\Client(XMLRPCSERVER);
21 21
     $client->setDebug(1);
22 22
     $r = $client->send($req);
23 23
     if (!$r->faultCode()) {
24 24
         $v = $r->value();
25
-        output("<br/>State number <b>" . $stateNo . "</b> is <b>"
26
-            . htmlspecialchars($encoder->decode($v)) . "</b><br/><br/>");
25
+        output("<br/>State number <b>".$stateNo."</b> is <b>"
26
+            . htmlspecialchars($encoder->decode($v))."</b><br/><br/>");
27 27
     } else {
28 28
         output("An error occurred: ");
29
-        output("Code: " . htmlspecialchars($r->faultCode())
30
-            . " Reason: '" . htmlspecialchars($r->faultString()) . "'</pre><br/>");
29
+        output("Code: ".htmlspecialchars($r->faultCode())
30
+            . " Reason: '".htmlspecialchars($r->faultString())."'</pre><br/>");
31 31
     }
32 32
 } else {
33 33
     $stateNo = "";
34 34
 }
35 35
 
36 36
 output("<form action=\"getstatename.php\" method=\"POST\">
37
-<input name=\"stateno\" value=\"" . $stateNo . "\">
37
+<input name=\"stateno\" value=\"" . $stateNo."\">
38 38
 <input type=\"submit\" value=\"go\" name=\"submit\">
39 39
 </form>
40 40
 <p>Enter a state number to query its name</p>");
41 41
 
42 42
 output("</body></html>\n");
43 43
 
44
-require_once __DIR__ . "/_append.php";
44
+require_once __DIR__."/_append.php";
Please login to merge, or discard this patch.
demo/client/_append.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,5 +3,5 @@
 block discarded – undo
3 3
 // Out-of-band information: let the client manipulate the page operations.
4 4
 // We do this to help the testsuite script: do not reproduce in production!
5 5
 if (isset($_COOKIE['PHPUNIT_SELENIUM_TEST_ID']) && extension_loaded('xdebug')) {
6
-    include_once __DIR__ . "/../../vendor/phpunit/phpunit-selenium/PHPUnit/Extensions/SeleniumCommon/append.php";
6
+    include_once __DIR__."/../../vendor/phpunit/phpunit-selenium/PHPUnit/Extensions/SeleniumCommon/append.php";
7 7
 }
Please login to merge, or discard this patch.
demo/client/parallel.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once __DIR__ . "/_prepend.php";
3
+require_once __DIR__."/_prepend.php";
4 4
 
5 5
 use PhpXmlRpc\Encoder;
6 6
 use PhpXmlRpc\Client;
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
         $handles = array();
26 26
         $curl = curl_multi_init();
27 27
 
28
-        foreach($requests as $k => $req) {
28
+        foreach ($requests as $k => $req) {
29 29
             $req->setDebug($this->debug);
30 30
 
31 31
             $handle = $this->prepareCurlHandle(
@@ -58,19 +58,19 @@  discard block
 block discarded – undo
58 58
         $running = 0;
59 59
         do {
60 60
             curl_multi_exec($curl, $running);
61
-        } while($running > 0);
61
+        } while ($running>0);
62 62
 
63 63
         $responses = array();
64
-        foreach($handles as $k => $h) {
64
+        foreach ($handles as $k => $h) {
65 65
             $responses[$k] = curl_multi_getcontent($handles[$k]);
66 66
 
67
-            if ($this->debug > 1) {
67
+            if ($this->debug>1) {
68 68
                 $message = "---CURL INFO---\n";
69 69
                 foreach (curl_getinfo($h) as $name => $val) {
70 70
                     if (is_array($val)) {
71 71
                         $val = implode("\n", $val);
72 72
                     }
73
-                    $message .= $name . ': ' . $val . "\n";
73
+                    $message .= $name.': '.$val."\n";
74 74
                 }
75 75
                 $message .= '---END---';
76 76
                 $this->getLogger()->debugMessage($message);
@@ -81,9 +81,9 @@  discard block
 block discarded – undo
81 81
         }
82 82
         curl_multi_close($curl);
83 83
 
84
-        foreach($responses as $k => $resp) {
84
+        foreach ($responses as $k => $resp) {
85 85
             if (!$resp) {
86
-                $responses[$k] = new Response(0, PhpXmlRpc::$xmlrpcerr['curl_fail'], PhpXmlRpc::$xmlrpcstr['curl_fail'] . ': ' . curl_error($curl));
86
+                $responses[$k] = new Response(0, PhpXmlRpc::$xmlrpcerr['curl_fail'], PhpXmlRpc::$xmlrpcstr['curl_fail'].': '.curl_error($curl));
87 87
             } else {
88 88
                 $responses[$k] = $requests[$k]->parseResponse($resp, true, $this->return_type);
89 89
             }
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 $value = $encoder->encode($data, array('auto_dates'));
101 101
 $req = new Request('interopEchoTests.echoValue', array($value));
102 102
 $reqs = array();
103
-for ($i = 0; $i < $num_tests; $i++) {
103
+for ($i = 0; $i<$num_tests; $i++) {
104 104
     $reqs[] = $req;
105 105
 }
106 106
 
@@ -109,18 +109,18 @@  discard block
 block discarded – undo
109 109
 
110 110
 $t = microtime(true);
111 111
 $resp = $client->send($reqs);
112
-$t = microtime(true) - $t;
112
+$t = microtime(true)-$t;
113 113
 echo "Sequential send: $t secs\n";
114 114
 
115 115
 $t = microtime(true);
116 116
 $resp = $client->sendParallel($reqs);
117
-$t = microtime(true) - $t;
117
+$t = microtime(true)-$t;
118 118
 echo "Parallel send: $t secs\n";
119 119
 
120 120
 $client->no_multicall = false;
121 121
 $t = microtime(true);
122 122
 $resp = $client->send($reqs);
123
-$t = microtime(true) - $t;
123
+$t = microtime(true)-$t;
124 124
 echo "Multicall send: $t secs\n";
125 125
 
126
-require_once __DIR__ . "/_append.php";
126
+require_once __DIR__."/_append.php";
Please login to merge, or discard this patch.