Completed
Push — master ( 7df27d...247d97 )
by Gaetano
13s
created
tests/4LocalhostMultiTest.php 2 patches
Braces   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -182,8 +182,7 @@  discard block
 block discarded – undo
182 182
         {
183 183
             $this->markTestSkipped('CURL missing: cannot test http 1.1 w. proxy');
184 184
             return;
185
-        }
186
-        else if ($this->args['PROXYSERVER'] == '')
185
+        } else if ($this->args['PROXYSERVER'] == '')
187 186
         {
188 187
             $this->markTestSkipped('PROXY definition missing: cannot test proxy w. http 1.1');
189 188
             return;
@@ -207,8 +206,7 @@  discard block
 block discarded – undo
207 206
         {
208 207
             $this->markTestSkipped('CURL missing: cannot test https functionality');
209 208
             return;
210
-        }
211
-        else if ($this->args['HTTPSSERVER'] == '')
209
+        } else if ($this->args['HTTPSSERVER'] == '')
212 210
         {
213 211
             $this->markTestSkipped('HTTPS SERVER definition missing: cannot test https');
214 212
             return;
@@ -235,13 +233,11 @@  discard block
 block discarded – undo
235 233
         {
236 234
             $this->markTestSkipped('CURL missing: cannot test https w. proxy');
237 235
             return;
238
-        }
239
-        else if ($this->args['PROXYSERVER'] == '')
236
+        } else if ($this->args['PROXYSERVER'] == '')
240 237
         {
241 238
             $this->markTestSkipped('PROXY definition missing: cannot test proxy w. https');
242 239
             return;
243
-        }
244
-        else if ($this->args['HTTPSSERVER'] == '')
240
+        } else if ($this->args['HTTPSSERVER'] == '')
245 241
         {
246 242
             $this->markTestSkipped('HTTPS SERVER definition missing: cannot test https w. proxy');
247 243
             return;
Please login to merge, or discard this patch.
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-include_once __DIR__ . '/../lib/xmlrpc.inc';
4
-include_once __DIR__ . '/../lib/xmlrpc_wrappers.inc';
3
+include_once __DIR__.'/../lib/xmlrpc.inc';
4
+include_once __DIR__.'/../lib/xmlrpc_wrappers.inc';
5 5
 
6
-include_once __DIR__ . '/parse_args.php';
6
+include_once __DIR__.'/parse_args.php';
7 7
 
8
-include_once __DIR__ . '/3LocalhostTest.php';
8
+include_once __DIR__.'/3LocalhostTest.php';
9 9
 
10 10
 /**
11 11
  * Tests which stress http features of the library.
@@ -27,9 +27,9 @@  discard block
 block discarded – undo
27 27
         );
28 28
 
29 29
         $methods = array();
30
-        foreach(get_class_methods('LocalhostTest') as $method)
30
+        foreach (get_class_methods('LocalhostTest') as $method)
31 31
         {
32
-            if(strpos($method, 'test') === 0 && !in_array($method, $unsafeMethods))
32
+            if (strpos($method, 'test') === 0 && !in_array($method, $unsafeMethods))
33 33
             {
34 34
                 if (!isset(self::$failed_tests[$method])) {
35 35
                     $methods[$method] = array($method);
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      */
47 47
     public function testDeflate($method)
48 48
     {
49
-        if(!function_exists('gzdeflate'))
49
+        if (!function_exists('gzdeflate'))
50 50
         {
51 51
             $this->markTestSkipped('Zlib missing: cannot test deflate functionality');
52 52
             return;
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      */
65 65
     public function testGzip($method)
66 66
     {
67
-        if(!function_exists('gzdeflate'))
67
+        if (!function_exists('gzdeflate'))
68 68
         {
69 69
             $this->markTestSkipped('Zlib missing: cannot test gzip functionality');
70 70
             return;
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 
79 79
     public function testKeepAlives()
80 80
     {
81
-        if(!function_exists('curl_init'))
81
+        if (!function_exists('curl_init'))
82 82
         {
83 83
             $this->markTestSkipped('CURL missing: cannot test http 1.1');
84 84
             return;
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
      */
119 119
     public function testHttp11($method)
120 120
     {
121
-        if(!function_exists('curl_init'))
121
+        if (!function_exists('curl_init'))
122 122
         {
123 123
             $this->markTestSkipped('CURL missing: cannot test http 1.1');
124 124
             return;
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
      */
138 138
     public function testHttp10Curl($method)
139 139
     {
140
-        if(!function_exists('curl_init'))
140
+        if (!function_exists('curl_init'))
141 141
         {
142 142
             $this->markTestSkipped('CURL missing: cannot test http 1.1');
143 143
             return;
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
      */
158 158
     public function testHttp11Gzip($method)
159 159
     {
160
-        if(!function_exists('curl_init'))
160
+        if (!function_exists('curl_init'))
161 161
         {
162 162
             $this->markTestSkipped('CURL missing: cannot test http 1.1');
163 163
             return;
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
      */
178 178
     public function testHttp11Deflate($method)
179 179
     {
180
-        if(!function_exists('curl_init'))
180
+        if (!function_exists('curl_init'))
181 181
         {
182 182
             $this->markTestSkipped('CURL missing: cannot test http 1.1');
183 183
             return;
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
      */
198 198
     public function testHttp11Proxy($method)
199 199
     {
200
-        if(!function_exists('curl_init'))
200
+        if (!function_exists('curl_init'))
201 201
         {
202 202
             $this->markTestSkipped('CURL missing: cannot test http 1.1 w. proxy');
203 203
             return;
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
      */
223 223
     public function testHttps($method)
224 224
     {
225
-        if(!function_exists('curl_init'))
225
+        if (!function_exists('curl_init'))
226 226
         {
227 227
             $this->markTestSkipped('CURL missing: cannot test https functionality');
228 228
             return;
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
      */
275 275
     public function testHttpsProxy($method)
276 276
     {
277
-        if(!function_exists('curl_init'))
277
+        if (!function_exists('curl_init'))
278 278
         {
279 279
             $this->markTestSkipped('CURL missing: cannot test https w. proxy');
280 280
             return;
Please login to merge, or discard this patch.
src/Client.php 1 patch
Spacing   +63 added lines, -63 removed lines patch added patch discarded remove patch
@@ -136,10 +136,10 @@  discard block
 block discarded – undo
136 136
             $server = $parts['host'];
137 137
             $path = isset($parts['path']) ? $parts['path'] : '';
138 138
             if (isset($parts['query'])) {
139
-                $path .= '?' . $parts['query'];
139
+                $path .= '?'.$parts['query'];
140 140
             }
141 141
             if (isset($parts['fragment'])) {
142
-                $path .= '#' . $parts['fragment'];
142
+                $path .= '#'.$parts['fragment'];
143 143
             }
144 144
             if (isset($parts['port'])) {
145 145
                 $port = $parts['port'];
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
             }
156 156
         }
157 157
         if ($path == '' || $path[0] != '/') {
158
-            $this->path = '/' . $path;
158
+            $this->path = '/'.$path;
159 159
         } else {
160 160
             $this->path = $path;
161 161
         }
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
         }*/
194 194
 
195 195
         // initialize user_agent string
196
-        $this->user_agent = PhpXmlRpc::$xmlrpcName . ' ' . PhpXmlRpc::$xmlrpcVersion;
196
+        $this->user_agent = PhpXmlRpc::$xmlrpcName.' '.PhpXmlRpc::$xmlrpcVersion;
197 197
     }
198 198
 
199 199
     /**
@@ -566,7 +566,7 @@  discard block
 block discarded – undo
566 566
      */
567 567
     protected function sendPayloadHTTP10($req, $server, $port, $timeout = 0, $username = '', $password = '',
568 568
         $authType = 1, $proxyHost = '', $proxyPort = 0, $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1,
569
-        $method='http')
569
+        $method = 'http')
570 570
     {
571 571
         return $this->sendPayloadSocket($req, $server, $port, $timeout, $username, $password, $authType, null, null,
572 572
             null, null, $proxyHost, $proxyPort, $proxyUsername, $proxyPassword, $proxyAuthType);
@@ -596,7 +596,7 @@  discard block
 block discarded – undo
596 596
      * @param int $sslVersion
597 597
      * @return Response
598 598
      */
599
-    protected function sendPayloadHTTPS($req, $server, $port, $timeout = 0, $username = '',  $password = '',
599
+    protected function sendPayloadHTTPS($req, $server, $port, $timeout = 0, $username = '', $password = '',
600 600
         $authType = 1, $cert = '', $certPass = '', $caCert = '', $caCertDir = '', $proxyHost = '', $proxyPort = 0,
601 601
         $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $keepAlive = false, $key = '', $keyPass = '',
602 602
         $sslVersion = 0)
@@ -631,11 +631,11 @@  discard block
 block discarded – undo
631 631
      */
632 632
     protected function sendPayloadSocket($req, $server, $port, $timeout = 0, $username = '', $password = '',
633 633
         $authType = 1, $cert = '', $certPass = '', $caCert = '', $caCertDir = '', $proxyHost = '', $proxyPort = 0,
634
-        $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $method='http', $key = '', $keyPass = '',
634
+        $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $method = 'http', $key = '', $keyPass = '',
635 635
         $sslVersion = 0)
636 636
     {
637 637
         if ($port == 0) {
638
-            $port = ( $method === 'https' ) ? 443 : 80;
638
+            $port = ($method === 'https') ? 443 : 80;
639 639
         }
640 640
 
641 641
         // Only create the payload if it was not created previously
@@ -666,15 +666,15 @@  discard block
 block discarded – undo
666 666
         // thanks to Grant Rauscher <[email protected]> for this
667 667
         $credentials = '';
668 668
         if ($username != '') {
669
-            $credentials = 'Authorization: Basic ' . base64_encode($username . ':' . $password) . "\r\n";
669
+            $credentials = 'Authorization: Basic '.base64_encode($username.':'.$password)."\r\n";
670 670
             if ($authType != 1) {
671
-                error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth is supported with HTTP 1.0');
671
+                error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth is supported with HTTP 1.0');
672 672
             }
673 673
         }
674 674
 
675 675
         $acceptedEncoding = '';
676 676
         if (is_array($this->accepted_compression) && count($this->accepted_compression)) {
677
-            $acceptedEncoding = 'Accept-Encoding: ' . implode(', ', $this->accepted_compression) . "\r\n";
677
+            $acceptedEncoding = 'Accept-Encoding: '.implode(', ', $this->accepted_compression)."\r\n";
678 678
         }
679 679
 
680 680
         $proxyCredentials = '';
@@ -685,17 +685,17 @@  discard block
 block discarded – undo
685 685
             $connectServer = $proxyHost;
686 686
             $connectPort = $proxyPort;
687 687
             $transport = 'tcp';
688
-            $uri = 'http://' . $server . ':' . $port . $this->path;
688
+            $uri = 'http://'.$server.':'.$port.$this->path;
689 689
             if ($proxyUsername != '') {
690 690
                 if ($proxyAuthType != 1) {
691
-                    error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth to proxy is supported with HTTP 1.0');
691
+                    error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth to proxy is supported with HTTP 1.0');
692 692
                 }
693
-                $proxyCredentials = 'Proxy-Authorization: Basic ' . base64_encode($proxyUsername . ':' . $proxyPassword) . "\r\n";
693
+                $proxyCredentials = 'Proxy-Authorization: Basic '.base64_encode($proxyUsername.':'.$proxyPassword)."\r\n";
694 694
             }
695 695
         } else {
696 696
             $connectServer = $server;
697 697
             $connectPort = $port;
698
-            $transport = ( $method === 'https' ) ? 'tls' : 'tcp';
698
+            $transport = ($method === 'https') ? 'tls' : 'tcp';
699 699
             $uri = $this->path;
700 700
         }
701 701
 
@@ -706,45 +706,45 @@  discard block
 block discarded – undo
706 706
             $version = '';
707 707
             foreach ($this->cookies as $name => $cookie) {
708 708
                 if ($cookie['version']) {
709
-                    $version = ' $Version="' . $cookie['version'] . '";';
710
-                    $cookieHeader .= ' ' . $name . '="' . $cookie['value'] . '";';
709
+                    $version = ' $Version="'.$cookie['version'].'";';
710
+                    $cookieHeader .= ' '.$name.'="'.$cookie['value'].'";';
711 711
                     if ($cookie['path']) {
712
-                        $cookieHeader .= ' $Path="' . $cookie['path'] . '";';
712
+                        $cookieHeader .= ' $Path="'.$cookie['path'].'";';
713 713
                     }
714 714
                     if ($cookie['domain']) {
715
-                        $cookieHeader .= ' $Domain="' . $cookie['domain'] . '";';
715
+                        $cookieHeader .= ' $Domain="'.$cookie['domain'].'";';
716 716
                     }
717 717
                     if ($cookie['port']) {
718
-                        $cookieHeader .= ' $Port="' . $cookie['port'] . '";';
718
+                        $cookieHeader .= ' $Port="'.$cookie['port'].'";';
719 719
                     }
720 720
                 } else {
721
-                    $cookieHeader .= ' ' . $name . '=' . $cookie['value'] . ";";
721
+                    $cookieHeader .= ' '.$name.'='.$cookie['value'].";";
722 722
                 }
723 723
             }
724
-            $cookieHeader = 'Cookie:' . $version . substr($cookieHeader, 0, -1) . "\r\n";
724
+            $cookieHeader = 'Cookie:'.$version.substr($cookieHeader, 0, -1)."\r\n";
725 725
         }
726 726
 
727 727
         // omit port if default
728 728
         if (($port == 80 && in_array($method, array('http', 'http10'))) || ($port == 443 && $method == 'https')) {
729
-            $port =  '';
729
+            $port = '';
730 730
         } else {
731
-            $port = ':' . $port;
731
+            $port = ':'.$port;
732 732
         }
733 733
 
734
-        $op = 'POST ' . $uri . " HTTP/1.0\r\n" .
735
-            'User-Agent: ' . $this->user_agent . "\r\n" .
736
-            'Host: ' . $server . $port . "\r\n" .
737
-            $credentials .
738
-            $proxyCredentials .
739
-            $acceptedEncoding .
740
-            $encodingHdr .
741
-            'Accept-Charset: ' . implode(',', $this->accepted_charset_encodings) . "\r\n" .
742
-            $cookieHeader .
743
-            'Content-Type: ' . $req->content_type . "\r\nContent-Length: " .
744
-            strlen($payload) . "\r\n\r\n" .
734
+        $op = 'POST '.$uri." HTTP/1.0\r\n".
735
+            'User-Agent: '.$this->user_agent."\r\n".
736
+            'Host: '.$server.$port."\r\n".
737
+            $credentials.
738
+            $proxyCredentials.
739
+            $acceptedEncoding.
740
+            $encodingHdr.
741
+            'Accept-Charset: '.implode(',', $this->accepted_charset_encodings)."\r\n".
742
+            $cookieHeader.
743
+            'Content-Type: '.$req->content_type."\r\nContent-Length: ".
744
+            strlen($payload)."\r\n\r\n".
745 745
             $payload;
746 746
 
747
-        if ($this->debug > 1) {
747
+        if ($this->debug>1) {
748 748
             Logger::instance()->debugMessage("---SENDING---\n$op\n---END---");
749 749
         }
750 750
 
@@ -770,7 +770,7 @@  discard block
 block discarded – undo
770 770
         }
771 771
         $context = stream_context_create($contextOptions);
772 772
 
773
-        if ($timeout <= 0) {
773
+        if ($timeout<=0) {
774 774
             $connectTimeout = ini_get('default_socket_timeout');
775 775
         } else {
776 776
             $connectTimeout = $timeout;
@@ -782,7 +782,7 @@  discard block
 block discarded – undo
782 782
         $fp = @stream_socket_client("$transport://$connectServer:$connectPort", $this->errno, $this->errstr, $connectTimeout,
783 783
             STREAM_CLIENT_CONNECT, $context);
784 784
         if ($fp) {
785
-            if ($timeout > 0) {
785
+            if ($timeout>0) {
786 786
                 stream_set_timeout($fp, $timeout);
787 787
             }
788 788
         } else {
@@ -790,8 +790,8 @@  discard block
 block discarded – undo
790 790
                 $err = error_get_last();
791 791
                 $this->errstr = $err['message'];
792 792
             }
793
-            $this->errstr = 'Connect error: ' . $this->errstr;
794
-            $r = new Response(0, PhpXmlRpc::$xmlrpcerr['http_error'], $this->errstr . ' (' . $this->errno . ')');
793
+            $this->errstr = 'Connect error: '.$this->errstr;
794
+            $r = new Response(0, PhpXmlRpc::$xmlrpcerr['http_error'], $this->errstr.' ('.$this->errno.')');
795 795
 
796 796
             return $r;
797 797
         }
@@ -898,7 +898,7 @@  discard block
 block discarded – undo
898 898
             $encodingHdr = '';
899 899
         }
900 900
 
901
-        if ($this->debug > 1) {
901
+        if ($this->debug>1) {
902 902
             Logger::instance()->debugMessage("---SENDING---\n$payload\n---END---");
903 903
         }
904 904
 
@@ -908,7 +908,7 @@  discard block
 block discarded – undo
908 908
             } else {
909 909
                 $protocol = $method;
910 910
             }
911
-            $curl = curl_init($protocol . '://' . $server . ':' . $port . $this->path);
911
+            $curl = curl_init($protocol.'://'.$server.':'.$port.$this->path);
912 912
             if ($keepAlive) {
913 913
                 $this->xmlrpc_curl_handle = $curl;
914 914
             }
@@ -919,7 +919,7 @@  discard block
 block discarded – undo
919 919
         // results into variable
920 920
         curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
921 921
 
922
-        if ($this->debug > 1) {
922
+        if ($this->debug>1) {
923 923
             curl_setopt($curl, CURLOPT_VERBOSE, true);
924 924
             /// @todo allow callers to redirect curlopt_stderr to some stream which can be buffered
925 925
         }
@@ -945,7 +945,7 @@  discard block
 block discarded – undo
945 945
             }
946 946
         }
947 947
         // extra headers
948
-        $headers = array('Content-Type: ' . $req->content_type, 'Accept-Charset: ' . implode(',', $this->accepted_charset_encodings));
948
+        $headers = array('Content-Type: '.$req->content_type, 'Accept-Charset: '.implode(',', $this->accepted_charset_encodings));
949 949
         // if no keepalive is wanted, let the server know it in advance
950 950
         if (!$keepAlive) {
951 951
             $headers[] = 'Connection: close';
@@ -962,7 +962,7 @@  discard block
 block discarded – undo
962 962
         curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
963 963
         // timeout is borked
964 964
         if ($timeout) {
965
-            curl_setopt($curl, CURLOPT_TIMEOUT, $timeout == 1 ? 1 : $timeout - 1);
965
+            curl_setopt($curl, CURLOPT_TIMEOUT, $timeout == 1 ? 1 : $timeout-1);
966 966
         }
967 967
 
968 968
         if ($method == 'http10') {
@@ -972,11 +972,11 @@  discard block
 block discarded – undo
972 972
         }
973 973
 
974 974
         if ($username && $password) {
975
-            curl_setopt($curl, CURLOPT_USERPWD, $username . ':' . $password);
975
+            curl_setopt($curl, CURLOPT_USERPWD, $username.':'.$password);
976 976
             if (defined('CURLOPT_HTTPAUTH')) {
977 977
                 curl_setopt($curl, CURLOPT_HTTPAUTH, $authType);
978 978
             } elseif ($authType != 1) {
979
-                error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth is supported by the current PHP/curl install');
979
+                error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth is supported by the current PHP/curl install');
980 980
             }
981 981
         }
982 982
 
@@ -1017,13 +1017,13 @@  discard block
 block discarded – undo
1017 1017
             if ($proxyPort == 0) {
1018 1018
                 $proxyPort = 8080; // NB: even for HTTPS, local connection is on port 8080
1019 1019
             }
1020
-            curl_setopt($curl, CURLOPT_PROXY, $proxyHost . ':' . $proxyPort);
1020
+            curl_setopt($curl, CURLOPT_PROXY, $proxyHost.':'.$proxyPort);
1021 1021
             if ($proxyUsername) {
1022
-                curl_setopt($curl, CURLOPT_PROXYUSERPWD, $proxyUsername . ':' . $proxyPassword);
1022
+                curl_setopt($curl, CURLOPT_PROXYUSERPWD, $proxyUsername.':'.$proxyPassword);
1023 1023
                 if (defined('CURLOPT_PROXYAUTH')) {
1024 1024
                     curl_setopt($curl, CURLOPT_PROXYAUTH, $proxyAuthType);
1025 1025
                 } elseif ($proxyAuthType != 1) {
1026
-                    error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth to proxy is supported by the current PHP/curl install');
1026
+                    error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth to proxy is supported by the current PHP/curl install');
1027 1027
                 }
1028 1028
             }
1029 1029
         }
@@ -1034,7 +1034,7 @@  discard block
 block discarded – undo
1034 1034
         if (count($this->cookies)) {
1035 1035
             $cookieHeader = '';
1036 1036
             foreach ($this->cookies as $name => $cookie) {
1037
-                $cookieHeader .= $name . '=' . $cookie['value'] . '; ';
1037
+                $cookieHeader .= $name.'='.$cookie['value'].'; ';
1038 1038
             }
1039 1039
             curl_setopt($curl, CURLOPT_COOKIE, substr($cookieHeader, 0, -2));
1040 1040
         }
@@ -1045,13 +1045,13 @@  discard block
 block discarded – undo
1045 1045
 
1046 1046
         $result = curl_exec($curl);
1047 1047
 
1048
-        if ($this->debug > 1) {
1048
+        if ($this->debug>1) {
1049 1049
             $message = "---CURL INFO---\n";
1050 1050
             foreach (curl_getinfo($curl) as $name => $val) {
1051 1051
                 if (is_array($val)) {
1052 1052
                     $val = implode("\n", $val);
1053 1053
                 }
1054
-                $message .= $name . ': ' . $val . "\n";
1054
+                $message .= $name.': '.$val."\n";
1055 1055
             }
1056 1056
             $message .= '---END---';
1057 1057
             Logger::instance()->debugMessage($message);
@@ -1061,7 +1061,7 @@  discard block
 block discarded – undo
1061 1061
             /// @todo we should use a better check here - what if we get back '' or '0'?
1062 1062
 
1063 1063
             $this->errstr = 'no response';
1064
-            $resp = new Response(0, PhpXmlRpc::$xmlrpcerr['curl_fail'], PhpXmlRpc::$xmlrpcstr['curl_fail'] . ': ' . curl_error($curl));
1064
+            $resp = new Response(0, PhpXmlRpc::$xmlrpcerr['curl_fail'], PhpXmlRpc::$xmlrpcstr['curl_fail'].': '.curl_error($curl));
1065 1065
             curl_close($curl);
1066 1066
             if ($keepAlive) {
1067 1067
                 $this->xmlrpc_curl_handle = null;
@@ -1171,7 +1171,7 @@  discard block
 block discarded – undo
1171 1171
             $call['methodName'] = new Value($req->method(), 'string');
1172 1172
             $numParams = $req->getNumParams();
1173 1173
             $params = array();
1174
-            for ($i = 0; $i < $numParams; $i++) {
1174
+            for ($i = 0; $i<$numParams; $i++) {
1175 1175
                 $params[$i] = $req->getParam($i);
1176 1176
             }
1177 1177
             $call['params'] = new Value($params, 'array');
@@ -1197,15 +1197,15 @@  discard block
 block discarded – undo
1197 1197
             /// @todo test this code branch...
1198 1198
             $rets = $result->value();
1199 1199
             if (!is_array($rets)) {
1200
-                return false;       // bad return type from system.multicall
1200
+                return false; // bad return type from system.multicall
1201 1201
             }
1202 1202
             $numRets = count($rets);
1203 1203
             if ($numRets != count($reqs)) {
1204
-                return false;       // wrong number of return values.
1204
+                return false; // wrong number of return values.
1205 1205
             }
1206 1206
 
1207 1207
             $response = array();
1208
-            for ($i = 0; $i < $numRets; $i++) {
1208
+            for ($i = 0; $i<$numRets; $i++) {
1209 1209
                 $val = $rets[$i];
1210 1210
                 if (!is_array($val)) {
1211 1211
                     return false;
@@ -1213,7 +1213,7 @@  discard block
 block discarded – undo
1213 1213
                 switch (count($val)) {
1214 1214
                     case 1:
1215 1215
                         if (!isset($val[0])) {
1216
-                            return false;       // Bad value
1216
+                            return false; // Bad value
1217 1217
                         }
1218 1218
                         // Normal return value
1219 1219
                         $response[$i] = new Response($val[0], 0, '', 'phpvals');
@@ -1241,19 +1241,19 @@  discard block
 block discarded – undo
1241 1241
 
1242 1242
             $rets = $result->value();
1243 1243
             if ($rets->kindOf() != 'array') {
1244
-                return false;       // bad return type from system.multicall
1244
+                return false; // bad return type from system.multicall
1245 1245
             }
1246 1246
             $numRets = $rets->count();
1247 1247
             if ($numRets != count($reqs)) {
1248
-                return false;       // wrong number of return values.
1248
+                return false; // wrong number of return values.
1249 1249
             }
1250 1250
 
1251 1251
             $response = array();
1252
-            foreach($rets as $val) {
1252
+            foreach ($rets as $val) {
1253 1253
                 switch ($val->kindOf()) {
1254 1254
                     case 'array':
1255 1255
                         if ($val->count() != 1) {
1256
-                            return false;       // Bad value
1256
+                            return false; // Bad value
1257 1257
                         }
1258 1258
                         // Normal return value
1259 1259
                         $response[] = new Response($val[0]);
Please login to merge, or discard this patch.
src/Request.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -38,9 +38,9 @@  discard block
 block discarded – undo
38 38
     public function xml_header($charsetEncoding = '')
39 39
     {
40 40
         if ($charsetEncoding != '') {
41
-            return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\" ?" . ">\n<methodCall>\n";
41
+            return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\" ?".">\n<methodCall>\n";
42 42
         } else {
43
-            return "<?xml version=\"1.0\"?" . ">\n<methodCall>\n";
43
+            return "<?xml version=\"1.0\"?".">\n<methodCall>\n";
44 44
         }
45 45
     }
46 46
 
@@ -52,16 +52,16 @@  discard block
 block discarded – undo
52 52
     public function createPayload($charsetEncoding = '')
53 53
     {
54 54
         if ($charsetEncoding != '') {
55
-            $this->content_type = 'text/xml; charset=' . $charsetEncoding;
55
+            $this->content_type = 'text/xml; charset='.$charsetEncoding;
56 56
         } else {
57 57
             $this->content_type = 'text/xml';
58 58
         }
59 59
         $this->payload = $this->xml_header($charsetEncoding);
60
-        $this->payload .= '<methodName>' . Charset::instance()->encodeEntities(
61
-            $this->methodname, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "</methodName>\n";
60
+        $this->payload .= '<methodName>'.Charset::instance()->encodeEntities(
61
+            $this->methodname, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding)."</methodName>\n";
62 62
         $this->payload .= "<params>\n";
63 63
         foreach ($this->params as $p) {
64
-            $this->payload .= "<param>\n" . $p->serialize($charsetEncoding) .
64
+            $this->payload .= "<param>\n".$p->serialize($charsetEncoding).
65 65
                 "</param>\n";
66 66
         }
67 67
         $this->payload .= "</params>\n";
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
         $this->httpResponse = array('raw_data' => $data, 'headers' => array(), 'cookies' => array());
187 187
 
188 188
         if ($data == '') {
189
-            error_log('XML-RPC: ' . __METHOD__ . ': no response received from server.');
189
+            error_log('XML-RPC: '.__METHOD__.': no response received from server.');
190 190
             return new Response(0, PhpXmlRpc::$xmlrpcerr['no_data'], PhpXmlRpc::$xmlrpcstr['no_data']);
191 191
         }
192 192
 
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
             $httpParser = new Http();
196 196
             try {
197 197
                 $this->httpResponse = $httpParser->parseResponseHeaders($data, $headersProcessed, $this->debug);
198
-            } catch(\Exception $e) {
198
+            } catch (\Exception $e) {
199 199
                 $r = new Response(0, $e->getCode(), $e->getMessage());
200 200
                 // failed processing of HTTP response headers
201 201
                 // save into response obj the full payload received, for debugging
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
         // idea from Luca Mariano <[email protected]> originally in PEARified version of the lib
215 215
         $pos = strrpos($data, '</methodResponse>');
216 216
         if ($pos !== false) {
217
-            $data = substr($data, 0, $pos + 17);
217
+            $data = substr($data, 0, $pos+17);
218 218
         }
219 219
 
220 220
         // try to 'guestimate' the character encoding of the received response
@@ -225,9 +225,9 @@  discard block
 block discarded – undo
225 225
             if ($start) {
226 226
                 $start += strlen('<!-- SERVER DEBUG INFO (BASE64 ENCODED):');
227 227
                 $end = strpos($data, '-->', $start);
228
-                $comments = substr($data, $start, $end - $start);
229
-                Logger::instance()->debugMessage("---SERVER DEBUG INFO (DECODED) ---\n\t" .
230
-                    str_replace("\n", "\n\t", base64_decode($comments)) . "\n---END---", $respEncoding);
228
+                $comments = substr($data, $start, $end-$start);
229
+                Logger::instance()->debugMessage("---SERVER DEBUG INFO (DECODED) ---\n\t".
230
+                    str_replace("\n", "\n\t", base64_decode($comments))."\n---END---", $respEncoding);
231 231
             }
232 232
         }
233 233
 
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
                     if (extension_loaded('mbstring')) {
256 256
                         $data = mb_convert_encoding($data, 'UTF-8', $respEncoding);
257 257
                     } else {
258
-                        error_log('XML-RPC: ' . __METHOD__ . ': invalid charset encoding of received response: ' . $respEncoding);
258
+                        error_log('XML-RPC: '.__METHOD__.': invalid charset encoding of received response: '.$respEncoding);
259 259
                     }
260 260
                 }
261 261
             }
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
                     xml_get_current_line_number($parser), xml_get_current_column_number($parser));
299 299
             }
300 300
             error_log($errStr);
301
-            $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_return'], PhpXmlRpc::$xmlrpcstr['invalid_return'] . ' ' . $errStr);
301
+            $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_return'], PhpXmlRpc::$xmlrpcstr['invalid_return'].' '.$errStr);
302 302
             xml_parser_free($parser);
303 303
             if ($this->debug) {
304 304
                 print $errStr;
@@ -311,13 +311,13 @@  discard block
 block discarded – undo
311 311
         }
312 312
         xml_parser_free($parser);
313 313
         // second error check: xml well formed but not xml-rpc compliant
314
-        if ($xmlRpcParser->_xh['isf'] > 1) {
314
+        if ($xmlRpcParser->_xh['isf']>1) {
315 315
             if ($this->debug) {
316 316
                 /// @todo echo something for user?
317 317
             }
318 318
 
319 319
             $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_return'],
320
-                PhpXmlRpc::$xmlrpcstr['invalid_return'] . ' ' . $xmlRpcParser->_xh['isf_reason']);
320
+                PhpXmlRpc::$xmlrpcstr['invalid_return'].' '.$xmlRpcParser->_xh['isf_reason']);
321 321
         }
322 322
         // third error check: parsing of the response has somehow gone boink.
323 323
         // NB: shall we omit this check, since we trust the parsing code?
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
             $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_return'],
329 329
                 PhpXmlRpc::$xmlrpcstr['invalid_return']);
330 330
         } else {
331
-            if ($this->debug > 1) {
331
+            if ($this->debug>1) {
332 332
                 Logger::instance()->debugMessage(
333 333
                     "---PARSED---\n".var_export($xmlRpcParser->_xh['value'], true)."\n---END---"
334 334
                 );
Please login to merge, or discard this patch.
lib/xmlrpcs.inc 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      */
53 53
     public function echoInput()
54 54
     {
55
-        $r = new PhpXmlRpc\Response(new PhpXmlRpc\Value("'Aha said I: '" . file_get_contents('php://input'), 'string'));
55
+        $r = new PhpXmlRpc\Response(new PhpXmlRpc\Value("'Aha said I: '".file_get_contents('php://input'), 'string'));
56 56
         print $r->serialize();
57 57
     }
58 58
 }
@@ -68,30 +68,30 @@  discard block
 block discarded – undo
68 68
     PhpXmlRpc\Server::xmlrpc_debugmsg($m);
69 69
 }
70 70
 
71
-function _xmlrpcs_getCapabilities($server, $m=null)
71
+function _xmlrpcs_getCapabilities($server, $m = null)
72 72
 {
73 73
     return PhpXmlRpc\Server::_xmlrpcs_getCapabilities($server, $m);
74 74
 }
75 75
 
76
-$_xmlrpcs_listMethods_sig=array(array(\PhpXmlRpc\Value::$xmlrpcArray));
77
-$_xmlrpcs_listMethods_doc='This method lists all the methods that the XML-RPC server knows how to dispatch';
78
-$_xmlrpcs_listMethods_sdoc=array(array('list of method names'));
79
-function _xmlrpcs_listMethods($server, $m=null) // if called in plain php values mode, second param is missing
76
+$_xmlrpcs_listMethods_sig = array(array(\PhpXmlRpc\Value::$xmlrpcArray));
77
+$_xmlrpcs_listMethods_doc = 'This method lists all the methods that the XML-RPC server knows how to dispatch';
78
+$_xmlrpcs_listMethods_sdoc = array(array('list of method names'));
79
+function _xmlrpcs_listMethods($server, $m = null) // if called in plain php values mode, second param is missing
80 80
 {
81 81
     return PhpXmlRpc\Server::_xmlrpcs_listMethods($server, $m);
82 82
 }
83 83
 
84
-$_xmlrpcs_methodSignature_sig=array(array(\PhpXmlRpc\Value::$xmlrpcArray, $GLOBALS['xmlrpcString']));
85
-$_xmlrpcs_methodSignature_doc='Returns an array of known signatures (an array of arrays) for the method name passed. If no signatures are known, returns a none-array (test for type != array to detect missing signature)';
86
-$_xmlrpcs_methodSignature_sdoc=array(array('list of known signatures, each sig being an array of xmlrpc type names', 'name of method to be described'));
84
+$_xmlrpcs_methodSignature_sig = array(array(\PhpXmlRpc\Value::$xmlrpcArray, $GLOBALS['xmlrpcString']));
85
+$_xmlrpcs_methodSignature_doc = 'Returns an array of known signatures (an array of arrays) for the method name passed. If no signatures are known, returns a none-array (test for type != array to detect missing signature)';
86
+$_xmlrpcs_methodSignature_sdoc = array(array('list of known signatures, each sig being an array of xmlrpc type names', 'name of method to be described'));
87 87
 function _xmlrpcs_methodSignature($server, $m)
88 88
 {
89 89
     return PhpXmlRpc\Server::_xmlrpcs_methodSignature($server, $m);
90 90
 }
91 91
 
92
-$_xmlrpcs_methodHelp_sig=array(array($GLOBALS['xmlrpcString'], $GLOBALS['xmlrpcString']));
93
-$_xmlrpcs_methodHelp_doc='Returns help text if defined for the method passed, otherwise returns an empty string';
94
-$_xmlrpcs_methodHelp_sdoc=array(array('method description', 'name of the method to be described'));
92
+$_xmlrpcs_methodHelp_sig = array(array($GLOBALS['xmlrpcString'], $GLOBALS['xmlrpcString']));
93
+$_xmlrpcs_methodHelp_doc = 'Returns help text if defined for the method passed, otherwise returns an empty string';
94
+$_xmlrpcs_methodHelp_sdoc = array(array('method description', 'name of the method to be described'));
95 95
 function _xmlrpcs_methodHelp($server, $m)
96 96
 {
97 97
     return PhpXmlRpc\Server::_xmlrpcs_methodHelp($server, $m);
Please login to merge, or discard this patch.
demo/client/mail.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     method)</p>
21 21
 <?php
22 22
 
23
-include_once __DIR__ . "/../../src/Autoloader.php";
23
+include_once __DIR__."/../../src/Autoloader.php";
24 24
 PhpXmlRpc\Autoloader::register();
25 25
 
26 26
 if (isset($_POST["mailto"]) && $_POST["mailto"]) {
@@ -44,8 +44,8 @@  discard block
 block discarded – undo
44 44
         print "<font color=\"red\">";
45 45
         print "Mail send failed<br/>\n";
46 46
         print "Fault: ";
47
-        print "Code: " . htmlspecialchars($resp->faultCode()) .
48
-            " Reason: '" . htmlspecialchars($resp->faultString()) . "'<br/>";
47
+        print "Code: ".htmlspecialchars($resp->faultCode()).
48
+            " Reason: '".htmlspecialchars($resp->faultString())."'<br/>";
49 49
         print "</font><br/>";
50 50
     }
51 51
 }
Please login to merge, or discard this patch.