Completed
Push — master ( 130c16...081f49 )
by Gaetano
09:14
created
src/Encoder.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
                 return $xmlrpcVal->scalarval();
76 76
             case 'array':
77 77
                 $arr = array();
78
-                foreach($xmlrpcVal as $value) {
78
+                foreach ($xmlrpcVal as $value) {
79 79
                     $arr[] = $this->decode($value, $options);
80 80
                 }
81 81
 
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
             case 'msg':
106 106
                 $paramCount = $xmlrpcVal->getNumParams();
107 107
                 $arr = array();
108
-                for ($i = 0; $i < $paramCount; $i++) {
108
+                for ($i = 0; $i<$paramCount; $i++) {
109 109
                     $arr[] = $this->decode($xmlrpcVal->getParam($i), $options);
110 110
                 }
111 111
 
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
                     $xmlrpcVal = new Value($phpVal->format('Ymd\TH:i:s'), Value::$xmlrpcStruct);
184 184
                 } else {
185 185
                     $arr = array();
186
-                    foreach($phpVal as $k => $v) {
186
+                    foreach ($phpVal as $k => $v) {
187 187
                         $arr[$k] = $this->encode($v, $options);
188 188
                     }
189 189
                     $xmlrpcVal = new Value($arr, Value::$xmlrpcStruct);
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
                 break;
206 206
             case 'resource':
207 207
                 if (in_array('extension_api', $options)) {
208
-                    $xmlrpcVal = new Value((int)$phpVal, Value::$xmlrpcInt);
208
+                    $xmlrpcVal = new Value((int) $phpVal, Value::$xmlrpcInt);
209 209
                 } else {
210 210
                     $xmlrpcVal = new Value();
211 211
                 }
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
                     if (extension_loaded('mbstring')) {
249 249
                         $xmlVal = mb_convert_encoding($xmlVal, 'UTF-8', $valEncoding);
250 250
                     } else {
251
-                        error_log('XML-RPC: ' . __METHOD__ . ': invalid charset encoding of xml text: ' . $valEncoding);
251
+                        error_log('XML-RPC: '.__METHOD__.': invalid charset encoding of xml text: '.$valEncoding);
252 252
                     }
253 253
                 }
254 254
             }
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
             return false;
281 281
         }
282 282
         xml_parser_free($parser);
283
-        if ($xmlRpcParser->_xh['isf'] > 1) {
283
+        if ($xmlRpcParser->_xh['isf']>1) {
284 284
             // test that $xmlrpc->_xh['value'] is an obj, too???
285 285
 
286 286
             error_log($xmlRpcParser->_xh['isf_reason']);
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
                 return $r;
302 302
             case 'methodcall':
303 303
                 $req = new Request($xmlRpcParser->_xh['method']);
304
-                for ($i = 0; $i < count($xmlRpcParser->_xh['params']); $i++) {
304
+                for ($i = 0; $i<count($xmlRpcParser->_xh['params']); $i++) {
305 305
                     $req->addParam($xmlRpcParser->_xh['params'][$i]);
306 306
                 }
307 307
 
Please login to merge, or discard this patch.
lib/xmlrpc.inc 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
         $val = reset($ar);
96 96
         $typ = key($ar);
97 97
 
98
-        return '<value>' . $this->serializedata($typ, $val) . "</value>\n";
98
+        return '<value>'.$this->serializedata($typ, $val)."</value>\n";
99 99
         //}
100 100
     }
101 101
 
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
         // preserve back compatibility
115 115
 
116 116
         if (is_array($b)) {
117
-            foreach($b as $id => $cont) {
117
+            foreach ($b as $id => $cont) {
118 118
                 $b[$id] = $cont->scalarval();
119 119
             }
120 120
         }
@@ -122,10 +122,10 @@  discard block
 block discarded – undo
122 122
         // add support for structures directly encoding php objects
123 123
         if (is_object($b)) {
124 124
             $t = get_object_vars($b);
125
-            foreach($t as $id => $cont) {
125
+            foreach ($t as $id => $cont) {
126 126
                 $t[$id] = $cont->scalarval();
127 127
             }
128
-            foreach($t as $id => $cont) {
128
+            foreach ($t as $id => $cont) {
129 129
                 @$b->$id = $cont;
130 130
             }
131 131
         }
@@ -160,17 +160,17 @@  discard block
 block discarded – undo
160 160
 /* Expose as global functions the ones which are now class methods */
161 161
 
162 162
 /// Wrong speling, but we are adamant on backwards compatibility!
163
-function xmlrpc_encode_entitites($data, $srcEncoding='', $destEncoding='')
163
+function xmlrpc_encode_entitites($data, $srcEncoding = '', $destEncoding = '')
164 164
 {
165 165
     return PhpXmlRpc\Helper\Charset::instance()->encodeEntitites($data, $srcEncoding, $destEncoding);
166 166
 }
167 167
 
168
-function iso8601_encode($timeT, $utc=0)
168
+function iso8601_encode($timeT, $utc = 0)
169 169
 {
170 170
     return PhpXmlRpc\Helper\Date::iso8601Encode($timeT, $utc);
171 171
 }
172 172
 
173
-function iso8601_decode($iDate, $utc=0)
173
+function iso8601_decode($iDate, $utc = 0)
174 174
 {
175 175
     return PhpXmlRpc\Helper\Date::iso8601Decode($iDate, $utc);
176 176
 }
@@ -180,25 +180,25 @@  discard block
 block discarded – undo
180 180
     return PhpXmlRpc\Helper\Http::decodeChunked($buffer);
181 181
 }
182 182
 
183
-function php_xmlrpc_decode($xmlrpcVal, $options=array())
183
+function php_xmlrpc_decode($xmlrpcVal, $options = array())
184 184
 {
185 185
     $encoder = new PhpXmlRpc\Encoder();
186 186
     return $encoder->decode($xmlrpcVal, $options);
187 187
 }
188 188
 
189
-function php_xmlrpc_encode($phpVal, $options=array())
189
+function php_xmlrpc_encode($phpVal, $options = array())
190 190
 {
191 191
     $encoder = new PhpXmlRpc\Encoder();
192 192
     return $encoder->encode($phpVal, $options);
193 193
 }
194 194
 
195
-function php_xmlrpc_decode_xml($xmlVal, $options=array())
195
+function php_xmlrpc_decode_xml($xmlVal, $options = array())
196 196
 {
197 197
     $encoder = new PhpXmlRpc\Encoder();
198 198
     return $encoder->decodeXml($xmlVal, $options);
199 199
 }
200 200
 
201
-function guess_encoding($httpHeader='', $xmlChunk='', $encodingPrefs=null)
201
+function guess_encoding($httpHeader = '', $xmlChunk = '', $encodingPrefs = null)
202 202
 {
203 203
     return PhpXmlRpc\Helper\XMLParser::guessEncoding($httpHeader, $xmlChunk, $encodingPrefs);
204 204
 }
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
@@ -22,12 +22,12 @@  discard block
 block discarded – undo
22 22
 
23 23
         // read chunk-size, chunk-extension (if any) and crlf
24 24
         // get the position of the linebreak
25
-        $chunkEnd = strpos($buffer, "\r\n") + 2;
25
+        $chunkEnd = strpos($buffer, "\r\n")+2;
26 26
         $temp = substr($buffer, 0, $chunkEnd);
27 27
         $chunkSize = hexdec(trim($temp));
28 28
         $chunkStart = $chunkEnd;
29
-        while ($chunkSize > 0) {
30
-            $chunkEnd = strpos($buffer, "\r\n", $chunkStart + $chunkSize);
29
+        while ($chunkSize>0) {
30
+            $chunkEnd = strpos($buffer, "\r\n", $chunkStart+$chunkSize);
31 31
 
32 32
             // just in case we got a broken connection
33 33
             if ($chunkEnd == false) {
@@ -39,19 +39,19 @@  discard block
 block discarded – undo
39 39
             }
40 40
 
41 41
             // read chunk-data and crlf
42
-            $chunk = substr($buffer, $chunkStart, $chunkEnd - $chunkStart);
42
+            $chunk = substr($buffer, $chunkStart, $chunkEnd-$chunkStart);
43 43
             // append chunk-data to entity-body
44 44
             $new .= $chunk;
45 45
             // length := length + chunk-size
46 46
             $length += strlen($chunk);
47 47
             // read chunk-size and crlf
48
-            $chunkStart = $chunkEnd + 2;
48
+            $chunkStart = $chunkEnd+2;
49 49
 
50
-            $chunkEnd = strpos($buffer, "\r\n", $chunkStart) + 2;
50
+            $chunkEnd = strpos($buffer, "\r\n", $chunkStart)+2;
51 51
             if ($chunkEnd == false) {
52 52
                 break; //just in case we got a broken connection
53 53
             }
54
-            $temp = substr($buffer, $chunkStart, $chunkEnd - $chunkStart);
54
+            $temp = substr($buffer, $chunkStart, $chunkEnd-$chunkStart);
55 55
             $chunkSize = hexdec(trim($temp));
56 56
             $chunkStart = $chunkEnd;
57 57
         }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      * @return array with keys 'headers' and 'cookies'
69 69
      * @throws \Exception
70 70
      */
71
-    public function parseResponseHeaders(&$data, $headersProcessed = false, $debug=0)
71
+    public function parseResponseHeaders(&$data, $headersProcessed = false, $debug = 0)
72 72
     {
73 73
         $httpResponse = array('raw_data' => $data, 'headers'=> array(), 'cookies' => array());
74 74
 
@@ -78,11 +78,11 @@  discard block
 block discarded – undo
78 78
             // (even though it is not valid http)
79 79
             $pos = strpos($data, "\r\n\r\n");
80 80
             if ($pos || is_int($pos)) {
81
-                $bd = $pos + 4;
81
+                $bd = $pos+4;
82 82
             } else {
83 83
                 $pos = strpos($data, "\n\n");
84 84
                 if ($pos || is_int($pos)) {
85
-                    $bd = $pos + 2;
85
+                    $bd = $pos+2;
86 86
                 } else {
87 87
                     // No separation between response headers and body: fault?
88 88
                     $bd = 0;
@@ -93,8 +93,8 @@  discard block
 block discarded – undo
93 93
                 // maybe we could take them into account, too?
94 94
                 $data = substr($data, $bd);
95 95
             } else {
96
-                error_log('XML-RPC: ' . __METHOD__ . ': HTTPS via proxy error, tunnel connection possibly failed');
97
-                throw new \Exception(PhpXmlRpc::$xmlrpcstr['http_error'] . ' (HTTPS via proxy error, tunnel connection possibly failed)', PhpXmlRpc::$xmlrpcerr['http_error']);
96
+                error_log('XML-RPC: '.__METHOD__.': HTTPS via proxy error, tunnel connection possibly failed');
97
+                throw new \Exception(PhpXmlRpc::$xmlrpcstr['http_error'].' (HTTPS via proxy error, tunnel connection possibly failed)', PhpXmlRpc::$xmlrpcerr['http_error']);
98 98
             }
99 99
         }
100 100
 
@@ -120,20 +120,20 @@  discard block
 block discarded – undo
120 120
         }
121 121
 
122 122
         if (!preg_match('/^HTTP\/[0-9.]+ 200 /', $data)) {
123
-            $errstr = substr($data, 0, strpos($data, "\n") - 1);
124
-            error_log('XML-RPC: ' . __METHOD__ . ': HTTP error, got response: ' . $errstr);
125
-            throw new \Exception(PhpXmlRpc::$xmlrpcstr['http_error'] . ' (' . $errstr . ')', PhpXmlRpc::$xmlrpcerr['http_error']);
123
+            $errstr = substr($data, 0, strpos($data, "\n")-1);
124
+            error_log('XML-RPC: '.__METHOD__.': HTTP error, got response: '.$errstr);
125
+            throw new \Exception(PhpXmlRpc::$xmlrpcstr['http_error'].' ('.$errstr.')', PhpXmlRpc::$xmlrpcerr['http_error']);
126 126
         }
127 127
 
128 128
         // be tolerant to usage of \n instead of \r\n to separate headers and data
129 129
         // (even though it is not valid http)
130 130
         $pos = strpos($data, "\r\n\r\n");
131 131
         if ($pos || is_int($pos)) {
132
-            $bd = $pos + 4;
132
+            $bd = $pos+4;
133 133
         } else {
134 134
             $pos = strpos($data, "\n\n");
135 135
             if ($pos || is_int($pos)) {
136
-                $bd = $pos + 2;
136
+                $bd = $pos+2;
137 137
             } else {
138 138
                 // No separation between response headers and body: fault?
139 139
                 // we could take some action here instead of going on...
@@ -144,10 +144,10 @@  discard block
 block discarded – undo
144 144
         // be tolerant to line endings, and extra empty lines
145 145
         $ar = preg_split("/\r?\n/", trim(substr($data, 0, $pos)));
146 146
 
147
-        foreach($ar as $line) {
147
+        foreach ($ar as $line) {
148 148
             // take care of multi-line headers and cookies
149 149
             $arr = explode(':', $line, 2);
150
-            if (count($arr) > 1) {
150
+            if (count($arr)>1) {
151 151
                 $headerName = strtolower(trim($arr[0]));
152 152
                 /// @todo some other headers (the ones that allow a CSV list of values)
153 153
                 /// do allow many values to be passed using multiple header lines.
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
                         // glue together all received cookies, using a comma to separate them
166 166
                         // (same as php does with getallheaders())
167 167
                         if (isset($httpResponse['headers'][$headerName])) {
168
-                            $httpResponse['headers'][$headerName] .= ', ' . trim($cookie);
168
+                            $httpResponse['headers'][$headerName] .= ', '.trim($cookie);
169 169
                         } else {
170 170
                             $httpResponse['headers'][$headerName] = trim($cookie);
171 171
                         }
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
                 }
195 195
             } elseif (isset($headerName)) {
196 196
                 /// @todo version1 cookies might span multiple lines, thus breaking the parsing above
197
-                $httpResponse['headers'][$headerName] .= ' ' . trim($line);
197
+                $httpResponse['headers'][$headerName] .= ' '.trim($line);
198 198
             }
199 199
         }
200 200
 
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
             // Decode chunked encoding sent by http 1.1 servers
219 219
             if (isset($httpResponse['headers']['transfer-encoding']) && $httpResponse['headers']['transfer-encoding'] == 'chunked') {
220 220
                 if (!$data = Http::decodeChunked($data)) {
221
-                    error_log('XML-RPC: ' . __METHOD__ . ': errors occurred when trying to rebuild the chunked data received from server');
221
+                    error_log('XML-RPC: '.__METHOD__.': errors occurred when trying to rebuild the chunked data received from server');
222 222
                     throw new \Exception(PhpXmlRpc::$xmlrpcstr['dechunk_fail'], PhpXmlRpc::$xmlrpcerr['dechunk_fail']);
223 223
                 }
224 224
             }
@@ -233,19 +233,19 @@  discard block
 block discarded – undo
233 233
                         if ($httpResponse['headers']['content-encoding'] == 'deflate' && $degzdata = @gzuncompress($data)) {
234 234
                             $data = $degzdata;
235 235
                             if ($debug) {
236
-                                Logger::instance()->debugMessage("---INFLATED RESPONSE---[" . strlen($data) . " chars]---\n$data\n---END---");
236
+                                Logger::instance()->debugMessage("---INFLATED RESPONSE---[".strlen($data)." chars]---\n$data\n---END---");
237 237
                             }
238 238
                         } elseif ($httpResponse['headers']['content-encoding'] == 'gzip' && $degzdata = @gzinflate(substr($data, 10))) {
239 239
                             $data = $degzdata;
240 240
                             if ($debug) {
241
-                                Logger::instance()->debugMessage("---INFLATED RESPONSE---[" . strlen($data) . " chars]---\n$data\n---END---");
241
+                                Logger::instance()->debugMessage("---INFLATED RESPONSE---[".strlen($data)." chars]---\n$data\n---END---");
242 242
                             }
243 243
                         } else {
244
-                            error_log('XML-RPC: ' . __METHOD__ . ': errors occurred when trying to decode the deflated data received from server');
244
+                            error_log('XML-RPC: '.__METHOD__.': errors occurred when trying to decode the deflated data received from server');
245 245
                             throw new \Exception(PhpXmlRpc::$xmlrpcstr['decompress_fail'], PhpXmlRpc::$xmlrpcerr['decompress_fail']);
246 246
                         }
247 247
                     } else {
248
-                        error_log('XML-RPC: ' . __METHOD__ . ': the server sent deflated data. Your php install must have the Zlib extension compiled in to support this.');
248
+                        error_log('XML-RPC: '.__METHOD__.': the server sent deflated data. Your php install must have the Zlib extension compiled in to support this.');
249 249
                         throw new \Exception(PhpXmlRpc::$xmlrpcstr['cannot_decompress'], PhpXmlRpc::$xmlrpcerr['cannot_decompress']);
250 250
                     }
251 251
                 }
Please login to merge, or discard this patch.
demo/server/server.php 1 patch
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     die();
16 16
 }
17 17
 
18
-include_once __DIR__ . "/../../vendor/autoload.php";
18
+include_once __DIR__."/../../vendor/autoload.php";
19 19
 
20 20
 // out-of-band information: let the client manipulate the server operations.
21 21
 // we do this to help the testsuite script: do not reproduce in production!
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
         mkdir($GLOBALS['PHPUNIT_COVERAGE_DATA_DIRECTORY']);
26 26
     }
27 27
 
28
-    include_once __DIR__ . "/../../vendor/phpunit/phpunit-selenium/PHPUnit/Extensions/SeleniumCommon/prepend.php";
28
+    include_once __DIR__."/../../vendor/phpunit/phpunit-selenium/PHPUnit/Extensions/SeleniumCommon/prepend.php";
29 29
 }
30 30
 
31 31
 use PhpXmlRpc\Value;
@@ -122,11 +122,11 @@  discard block
 block discarded – undo
122 122
     // extract the value of the state number
123 123
     $snv = $sno->scalarval();
124 124
     // look it up in our array (zero-based)
125
-    if (isset($stateNames[$snv - 1])) {
126
-        $stateName = $stateNames[$snv - 1];
125
+    if (isset($stateNames[$snv-1])) {
126
+        $stateName = $stateNames[$snv-1];
127 127
     } else {
128 128
         // not there, so complain
129
-        $err = "I don't have a state for the index '" . $snv . "'";
129
+        $err = "I don't have a state for the index '".$snv."'";
130 130
     }
131 131
 
132 132
     // if we generated an error, create an error return response
@@ -152,11 +152,11 @@  discard block
 block discarded – undo
152 152
 {
153 153
     global $stateNames;
154 154
 
155
-    if (isset($stateNames[$stateNo - 1])) {
156
-        return $stateNames[$stateNo - 1];
155
+    if (isset($stateNames[$stateNo-1])) {
156
+        return $stateNames[$stateNo-1];
157 157
     } else {
158 158
         // not, there so complain
159
-        throw new Exception("I don't have a state for the index '" . $stateNo . "'", PhpXmlRpc\PhpXmlRpc::$xmlrpcerruser);
159
+        throw new Exception("I don't have a state for the index '".$stateNo."'", PhpXmlRpc\PhpXmlRpc::$xmlrpcerruser);
160 160
     }
161 161
 }
162 162
 
@@ -186,17 +186,17 @@  discard block
 block discarded – undo
186 186
 eval($findstate9_sig['source']);
187 187
 
188 188
 $findstate10_sig = array(
189
-    "function" => function ($req) { return findState($req); },
189
+    "function" => function($req) { return findState($req); },
190 190
     "signature" => $findstate_sig,
191 191
     "docstring" => $findstate_doc,
192 192
 );
193 193
 
194
-$findstate11_sig = $wrapper->wrapPhpFunction(function ($stateNo) { return inner_findstate($stateNo); });
194
+$findstate11_sig = $wrapper->wrapPhpFunction(function($stateNo) { return inner_findstate($stateNo); });
195 195
 
196 196
 $c = new xmlrpcServerMethodsContainer;
197 197
 $moreSignatures = $wrapper->wrapPhpClass($c, array('prefix' => 'tests.', 'method_type' => 'all'));
198 198
 
199
-$returnObj_sig =  $wrapper->wrapPhpFunction(array($c, 'returnObject'), '', array('encode_php_objs' => true));
199
+$returnObj_sig = $wrapper->wrapPhpFunction(array($c, 'returnObject'), '', array('encode_php_objs' => true));
200 200
 
201 201
 // used to test signatures with NULL params
202 202
 $findstate12_sig = array(
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
     $s = $req->getParam(0);
223 223
     $t = $req->getParam(1);
224 224
 
225
-    return new PhpXmlRpc\Response(new Value($s->scalarval() + $t->scalarval(), Value::$xmlrpcInt));
225
+    return new PhpXmlRpc\Response(new Value($s->scalarval()+$t->scalarval(), Value::$xmlrpcInt));
226 226
 }
227 227
 
228 228
 $addtwodouble_sig = array(array(Value::$xmlrpcDouble, Value::$xmlrpcDouble, Value::$xmlrpcDouble));
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
     $s = $req->getParam(0);
233 233
     $t = $req->getParam(1);
234 234
 
235
-    return new PhpXmlRpc\Response(new Value($s->scalarval() + $t->scalarval(), Value::$xmlrpcDouble));
235
+    return new PhpXmlRpc\Response(new Value($s->scalarval()+$t->scalarval(), Value::$xmlrpcDouble));
236 236
 }
237 237
 
238 238
 $stringecho_sig = array(array(Value::$xmlrpcString, Value::$xmlrpcString));
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
 function echoBack($req)
249 249
 {
250 250
     // just sends back a string with what i got sent to me, just escaped, that's all
251
-    $s = "I got the following message:\n" . $req->serialize();
251
+    $s = "I got the following message:\n".$req->serialize();
252 252
 
253 253
     return new PhpXmlRpc\Response(new Value($s));
254 254
 }
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
         return 0;
306 306
     }
307 307
 
308
-    return ($agesorter_arr[$a] > $agesorter_arr[$b]) ? -1 : 1;
308
+    return ($agesorter_arr[$a]>$agesorter_arr[$b]) ? -1 : 1;
309 309
 }
310 310
 
311 311
 $agesorter_sig = array(array(Value::$xmlrpcArray, Value::$xmlrpcArray));
@@ -351,7 +351,7 @@  discard block
 block discarded – undo
351 351
     // hack, must make global as uksort() won't
352 352
     // allow us to pass any other auxiliary information
353 353
     uksort($agesorter_arr, 'agesorter_compare');
354
-    foreach($agesorter_arr as $key => $val) {
354
+    foreach ($agesorter_arr as $key => $val) {
355 355
         // recreate each struct element
356 356
         $v[] = new Value(
357 357
             array(
@@ -406,17 +406,17 @@  discard block
 block discarded – undo
406 406
         $err = "Error, no 'From' field specified";
407 407
     }
408 408
 
409
-    $msgHdr = "From: " . $mFrom->scalarval() . "\n";
410
-    $msgHdr .= "To: " . $mTo->scalarval() . "\n";
409
+    $msgHdr = "From: ".$mFrom->scalarval()."\n";
410
+    $msgHdr .= "To: ".$mTo->scalarval()."\n";
411 411
 
412 412
     if ($mCc->scalarval() != "") {
413
-        $msgHdr .= "Cc: " . $mCc->scalarval() . "\n";
413
+        $msgHdr .= "Cc: ".$mCc->scalarval()."\n";
414 414
     }
415 415
     if ($mBcc->scalarval() != "") {
416
-        $msgHdr .= "Bcc: " . $mBcc->scalarval() . "\n";
416
+        $msgHdr .= "Bcc: ".$mBcc->scalarval()."\n";
417 417
     }
418 418
     if ($mMime->scalarval() != "") {
419
-        $msgHdr .= "Content-type: " . $mMime->scalarval() . "\n";
419
+        $msgHdr .= "Content-type: ".$mMime->scalarval()."\n";
420 420
     }
421 421
     $msgHdr .= "X-Mailer: XML-RPC for PHP mailer 1.0";
422 422
 
@@ -506,7 +506,7 @@  discard block
 block discarded – undo
506 506
     $moe = $sno["moe"];
507 507
     $larry = $sno["larry"];
508 508
     $curly = $sno["curly"];
509
-    $num = $moe->scalarval() + $larry->scalarval() + $curly->scalarval();
509
+    $num = $moe->scalarval()+$larry->scalarval()+$curly->scalarval();
510 510
 
511 511
     return new PhpXmlRpc\Response(new Value($num, Value::$xmlrpcInt));
512 512
 }
@@ -548,9 +548,9 @@  discard block
 block discarded – undo
548 548
     $ar = $req->getParam(0);
549 549
     $sz = $ar->count();
550 550
     $first = $ar[0];
551
-    $last = $ar[$sz - 1];
551
+    $last = $ar[$sz-1];
552 552
 
553
-    return new PhpXmlRpc\Response(new Value($first->scalarval() .
553
+    return new PhpXmlRpc\Response(new Value($first->scalarval().
554 554
         $last->scalarval(), Value::$xmlrpcString));
555 555
 }
556 556
 
@@ -584,7 +584,7 @@  discard block
 block discarded – undo
584 584
     $larry = $fools["larry"];
585 585
     $moe = $fools["moe"];
586 586
 
587
-    return new PhpXmlRpc\Response(new Value($curly->scalarval() + $larry->scalarval() + $moe->scalarval(), Value::$xmlrpcInt));
587
+    return new PhpXmlRpc\Response(new Value($curly->scalarval()+$larry->scalarval()+$moe->scalarval(), Value::$xmlrpcInt));
588 588
 }
589 589
 
590 590
 $v1_countTheEntities_sig = array(array(Value::$xmlrpcStruct, Value::$xmlrpcString));
@@ -598,7 +598,7 @@  discard block
 block discarded – undo
598 598
     $ap = 0;
599 599
     $qu = 0;
600 600
     $amp = 0;
601
-    for ($i = 0; $i < strlen($str); $i++) {
601
+    for ($i = 0; $i<strlen($str); $i++) {
602 602
         $c = substr($str, $i, 1);
603 603
         switch ($c) {
604 604
             case ">":
@@ -800,7 +800,7 @@  discard block
 block discarded – undo
800 800
     ),
801 801
     // Greek word 'kosme'. NB: NOT a valid ISO8859 string!
802 802
     // NB: we can only register this when setting internal encoding to UTF-8, or it will break system.listMethods
803
-    "tests.utf8methodname." . 'κόσμε' => array(
803
+    "tests.utf8methodname.".'κόσμε' => array(
804 804
         "function" => "stringEcho",
805 805
         "signature" => $stringecho_sig,
806 806
         "docstring" => $stringecho_doc,
@@ -996,5 +996,5 @@  discard block
 block discarded – undo
996 996
 // Out-of-band information: let the client manipulate the server operations.
997 997
 // We do this to help the testsuite script: do not reproduce in production!
998 998
 if (isset($_COOKIE['PHPUNIT_SELENIUM_TEST_ID']) && extension_loaded('xdebug')) {
999
-    include_once __DIR__ . "/../../vendor/phpunit/phpunit-selenium/PHPUnit/Extensions/SeleniumCommon/append.php";
999
+    include_once __DIR__."/../../vendor/phpunit/phpunit-selenium/PHPUnit/Extensions/SeleniumCommon/append.php";
1000 1000
 }
Please login to merge, or discard this patch.
tests/3LocalhostTest.php 1 patch
Spacing   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@  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 8
 /**
9 9
  * Tests which involve interaction between the client and the server.
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
         // (but only if not called from subclass objects / multitests)
33 33
         if (function_exists('debug_backtrace') && strtolower(get_called_class()) == 'localhosttests') {
34 34
             $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
35
-            for ($i = 0; $i < count($trace); $i++) {
35
+            for ($i = 0; $i<count($trace); $i++) {
36 36
                 if (strpos($trace[$i]['function'], 'test') === 0) {
37 37
                     self::$failed_tests[$trace[$i]['function']] = true;
38 38
                     break;
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      */
54 54
     public function run(PHPUnit_Framework_TestResult $result = NULL)
55 55
     {
56
-        $this->testId = get_class($this) . '__' . $this->getName();
56
+        $this->testId = get_class($this).'__'.$this->getName();
57 57
 
58 58
         if ($result === NULL) {
59 59
             $result = $this->createResult();
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
         $this->args = argParser::getArgs();
85 85
 
86 86
         $server = explode(':', $this->args['LOCALSERVER']);
87
-        if (count($server) > 1) {
87
+        if (count($server)>1) {
88 88
             $this->client = new xmlrpc_client($this->args['URI'], $server[0], $server[1]);
89 89
         } else {
90 90
             $this->client = new xmlrpc_client($this->args['URI'], $this->args['LOCALSERVER']);
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         $this->client->request_compression = $this->request_compression;
95 95
         $this->client->accepted_compression = $this->accepted_compression;
96 96
 
97
-        $this->coverageScriptUrl = 'http://' . $this->args['LOCALSERVER'] . '/' . str_replace( '/demo/server/server.php', 'tests/phpunit_coverage.php', $this->args['URI'] );
97
+        $this->coverageScriptUrl = 'http://'.$this->args['LOCALSERVER'].'/'.str_replace('/demo/server/server.php', 'tests/phpunit_coverage.php', $this->args['URI']);
98 98
 
99 99
         if ($this->args['DEBUG'] == 1)
100 100
             ob_start();
@@ -130,9 +130,9 @@  discard block
 block discarded – undo
130 130
             return $r;
131 131
         }
132 132
         if (is_array($errorCode)) {
133
-            $this->assertContains($r->faultCode(), $errorCode, 'Error ' . $r->faultCode() . ' connecting to server: ' . $r->faultString());
133
+            $this->assertContains($r->faultCode(), $errorCode, 'Error '.$r->faultCode().' connecting to server: '.$r->faultString());
134 134
         } else {
135
-            $this->assertEquals($errorCode, $r->faultCode(), 'Error ' . $r->faultCode() . ' connecting to server: ' . $r->faultString());
135
+            $this->assertEquals($errorCode, $r->faultCode(), 'Error '.$r->faultCode().' connecting to server: '.$r->faultString());
136 136
         }
137 137
         if (!$r->faultCode()) {
138 138
             if ($returnResponse) {
@@ -154,20 +154,20 @@  discard block
 block discarded – undo
154 154
         $query = parse_url($this->client->path, PHP_URL_QUERY);
155 155
         parse_str($query, $vars);
156 156
         $query = http_build_query(array_merge($vars, $data));
157
-        $this->client->path = parse_url($this->client->path, PHP_URL_PATH) . '?' . $query;
157
+        $this->client->path = parse_url($this->client->path, PHP_URL_PATH).'?'.$query;
158 158
     }
159 159
 
160 160
     public function testString()
161 161
     {
162
-        $sendString = "here are 3 \"entities\": < > & " .
163
-            "and here's a dollar sign: \$pretendvarname and a backslash too: " . chr(92) .
164
-            " - isn't that great? \\\"hackery\\\" at it's best " .
165
-            " also don't want to miss out on \$item[0]. " .
166
-            "The real weird stuff follows: CRLF here" . chr(13) . chr(10) .
167
-            "a simple CR here" . chr(13) .
168
-            "a simple LF here" . chr(10) .
169
-            "and then LFCR" . chr(10) . chr(13) .
170
-            "last but not least weird names: G" . chr(252) . "nter, El" . chr(232) . "ne, and an xml comment closing tag: -->";
162
+        $sendString = "here are 3 \"entities\": < > & ".
163
+            "and here's a dollar sign: \$pretendvarname and a backslash too: ".chr(92).
164
+            " - isn't that great? \\\"hackery\\\" at it's best ".
165
+            " also don't want to miss out on \$item[0]. ".
166
+            "The real weird stuff follows: CRLF here".chr(13).chr(10).
167
+            "a simple CR here".chr(13).
168
+            "a simple LF here".chr(10).
169
+            "and then LFCR".chr(10).chr(13).
170
+            "last but not least weird names: G".chr(252)."nter, El".chr(232)."ne, and an xml comment closing tag: -->";
171 171
         $m = new xmlrpcmsg('examples.stringecho', array(
172 172
             new xmlrpcval($sendString, 'string'),
173 173
         ));
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
     public function testLatin1String()
189 189
     {
190 190
         $sendString =
191
-            "last but not least weird names: G" . chr(252) . "nter, El" . chr(232) . "ne";
191
+            "last but not least weird names: G".chr(252)."nter, El".chr(232)."ne";
192 192
         $x = '<?xml version="1.0" encoding="ISO-8859-1"?><methodCall><methodName>examples.stringecho</methodName><params><param><value>'.
193 193
             $sendString.
194 194
             '</value></param></params></methodCall>';
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
     public function testUtf8Method()
293 293
     {
294 294
         PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding = 'UTF-8';
295
-        $m = new xmlrpcmsg("tests.utf8methodname." . 'κόσμε', array(
295
+        $m = new xmlrpcmsg("tests.utf8methodname.".'κόσμε', array(
296 296
             new xmlrpcval('hello')
297 297
         ));
298 298
         $v = $this->send($m);
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
         ));
315 315
         $v = $this->send($m);
316 316
         if ($v) {
317
-            $this->assertEquals($a + $b, $v->scalarval());
317
+            $this->assertEquals($a+$b, $v->scalarval());
318 318
         }
319 319
     }
320 320
 
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
         ));
327 327
         $v = $this->send($m);
328 328
         if ($v) {
329
-            $this->assertEquals(12 - 23, $v->scalarval());
329
+            $this->assertEquals(12-23, $v->scalarval());
330 330
         }
331 331
     }
332 332
 
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
         if ($v) {
361 361
             $sz = $v->arraysize();
362 362
             $got = '';
363
-            for ($i = 0; $i < $sz; $i++) {
363
+            for ($i = 0; $i<$sz; $i++) {
364 364
                 $b = $v->arraymem($i);
365 365
                 if ($b->scalarval()) {
366 366
                     $got .= '1';
@@ -423,7 +423,7 @@  discard block
 block discarded – undo
423 423
             $got = '';
424 424
             $expected = '37210';
425 425
             $expect_array = array('ctLeftAngleBrackets', 'ctRightAngleBrackets', 'ctAmpersands', 'ctApostrophes', 'ctQuotes');
426
-            foreach($expect_array as $val) {
426
+            foreach ($expect_array as $val) {
427 427
                 $b = $v->structmem($val);
428 428
                 $got .= $b->me['int'];
429 429
             }
@@ -841,7 +841,7 @@  discard block
 block discarded – undo
841 841
     {
842 842
         // make a 'deep client copy' as the original one might have many properties set
843 843
         // also for speed only wrap one method of the whole server
844
-        $class = wrap_xmlrpc_server($this->client, array('simple_client_copy' => 0, 'method_filter' => '/examples\.getStateName/' ));
844
+        $class = wrap_xmlrpc_server($this->client, array('simple_client_copy' => 0, 'method_filter' => '/examples\.getStateName/'));
845 845
         if ($class == '') {
846 846
             $this->fail('Registration of remote server failed');
847 847
         } else {
@@ -876,9 +876,9 @@  discard block
 block discarded – undo
876 876
         $cookies = array(
877 877
             //'c1' => array(),
878 878
             'c2' => array('value' => 'c2'),
879
-            'c3' => array('value' => 'c3', 'expires' => time() + 60 * 60 * 24 * 30),
880
-            'c4' => array('value' => 'c4', 'expires' => time() + 60 * 60 * 24 * 30, 'path' => '/'),
881
-            'c5' => array('value' => 'c5', 'expires' => time() + 60 * 60 * 24 * 30, 'path' => '/', 'domain' => 'localhost'),
879
+            'c3' => array('value' => 'c3', 'expires' => time()+60 * 60 * 24 * 30),
880
+            'c4' => array('value' => 'c4', 'expires' => time()+60 * 60 * 24 * 30, 'path' => '/'),
881
+            'c5' => array('value' => 'c5', 'expires' => time()+60 * 60 * 24 * 30, 'path' => '/', 'domain' => 'localhost'),
882 882
         );
883 883
         $cookiesval = php_xmlrpc_encode($cookies);
884 884
         $m = new xmlrpcmsg('examples.setcookies', array($cookiesval));
@@ -926,10 +926,10 @@  discard block
 block discarded – undo
926 926
         $m = new xmlrpcmsg('examples.getcookies', array());
927 927
         foreach ($cookies as $cookie => $val) {
928 928
             $this->client->setCookie($cookie, $val);
929
-            $cookies[$cookie] = (string)$cookies[$cookie];
929
+            $cookies[$cookie] = (string) $cookies[$cookie];
930 930
         }
931 931
         $r = $this->client->send($m, $this->timeout, $this->method);
932
-        $this->assertEquals(0, $r->faultCode(), 'Error ' . $r->faultCode() . ' connecting to server: ' . $r->faultString());
932
+        $this->assertEquals(0, $r->faultCode(), 'Error '.$r->faultCode().' connecting to server: '.$r->faultString());
933 933
         if (!$r->faultCode()) {
934 934
             $v = $r->value();
935 935
             $v = php_xmlrpc_decode($v);
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.
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
     /**
@@ -565,7 +565,7 @@  discard block
 block discarded – undo
565 565
      */
566 566
     protected function sendPayloadHTTP10($req, $server, $port, $timeout = 0, $username = '', $password = '',
567 567
         $authType = 1, $proxyHost = '', $proxyPort = 0, $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1,
568
-        $method='http')
568
+        $method = 'http')
569 569
     {
570 570
         return $this->sendPayloadSocket($req, $server, $port, $timeout, $username, $password, $authType, null, null,
571 571
             null, null, $proxyHost, $proxyPort, $proxyUsername, $proxyPassword, $proxyAuthType, $method);
@@ -595,7 +595,7 @@  discard block
 block discarded – undo
595 595
      * @param int $sslVersion
596 596
      * @return Response
597 597
      */
598
-    protected function sendPayloadHTTPS($req, $server, $port, $timeout = 0, $username = '',  $password = '',
598
+    protected function sendPayloadHTTPS($req, $server, $port, $timeout = 0, $username = '', $password = '',
599 599
         $authType = 1, $cert = '', $certPass = '', $caCert = '', $caCertDir = '', $proxyHost = '', $proxyPort = 0,
600 600
         $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $keepAlive = false, $key = '', $keyPass = '',
601 601
         $sslVersion = 0)
@@ -630,11 +630,11 @@  discard block
 block discarded – undo
630 630
      */
631 631
     protected function sendPayloadSocket($req, $server, $port, $timeout = 0, $username = '', $password = '',
632 632
         $authType = 1, $cert = '', $certPass = '', $caCert = '', $caCertDir = '', $proxyHost = '', $proxyPort = 0,
633
-        $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $method='http', $key = '', $keyPass = '',
633
+        $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $method = 'http', $key = '', $keyPass = '',
634 634
         $sslVersion = 0)
635 635
     {
636 636
         if ($port == 0) {
637
-            $port = ( $method === 'https' ) ? 443 : 80;
637
+            $port = ($method === 'https') ? 443 : 80;
638 638
         }
639 639
 
640 640
         // Only create the payload if it was not created previously
@@ -664,15 +664,15 @@  discard block
 block discarded – undo
664 664
         // thanks to Grant Rauscher <[email protected]> for this
665 665
         $credentials = '';
666 666
         if ($username != '') {
667
-            $credentials = 'Authorization: Basic ' . base64_encode($username . ':' . $password) . "\r\n";
667
+            $credentials = 'Authorization: Basic '.base64_encode($username.':'.$password)."\r\n";
668 668
             if ($authType != 1) {
669
-                error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth is supported with HTTP 1.0');
669
+                error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth is supported with HTTP 1.0');
670 670
             }
671 671
         }
672 672
 
673 673
         $acceptedEncoding = '';
674 674
         if (is_array($this->accepted_compression) && count($this->accepted_compression)) {
675
-            $acceptedEncoding = 'Accept-Encoding: ' . implode(', ', $this->accepted_compression) . "\r\n";
675
+            $acceptedEncoding = 'Accept-Encoding: '.implode(', ', $this->accepted_compression)."\r\n";
676 676
         }
677 677
 
678 678
         $proxyCredentials = '';
@@ -683,17 +683,17 @@  discard block
 block discarded – undo
683 683
             $connectServer = $proxyHost;
684 684
             $connectPort = $proxyPort;
685 685
             $transport = 'tcp';
686
-            $uri = 'http://' . $server . ':' . $port . $this->path;
686
+            $uri = 'http://'.$server.':'.$port.$this->path;
687 687
             if ($proxyUsername != '') {
688 688
                 if ($proxyAuthType != 1) {
689
-                    error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth to proxy is supported with HTTP 1.0');
689
+                    error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth to proxy is supported with HTTP 1.0');
690 690
                 }
691
-                $proxyCredentials = 'Proxy-Authorization: Basic ' . base64_encode($proxyUsername . ':' . $proxyPassword) . "\r\n";
691
+                $proxyCredentials = 'Proxy-Authorization: Basic '.base64_encode($proxyUsername.':'.$proxyPassword)."\r\n";
692 692
             }
693 693
         } else {
694 694
             $connectServer = $server;
695 695
             $connectPort = $port;
696
-            $transport = ( $method === 'https' ) ? 'tls' : 'tcp';
696
+            $transport = ($method === 'https') ? 'tls' : 'tcp';
697 697
             $uri = $this->path;
698 698
         }
699 699
 
@@ -704,45 +704,45 @@  discard block
 block discarded – undo
704 704
             $version = '';
705 705
             foreach ($this->cookies as $name => $cookie) {
706 706
                 if ($cookie['version']) {
707
-                    $version = ' $Version="' . $cookie['version'] . '";';
708
-                    $cookieHeader .= ' ' . $name . '="' . $cookie['value'] . '";';
707
+                    $version = ' $Version="'.$cookie['version'].'";';
708
+                    $cookieHeader .= ' '.$name.'="'.$cookie['value'].'";';
709 709
                     if ($cookie['path']) {
710
-                        $cookieHeader .= ' $Path="' . $cookie['path'] . '";';
710
+                        $cookieHeader .= ' $Path="'.$cookie['path'].'";';
711 711
                     }
712 712
                     if ($cookie['domain']) {
713
-                        $cookieHeader .= ' $Domain="' . $cookie['domain'] . '";';
713
+                        $cookieHeader .= ' $Domain="'.$cookie['domain'].'";';
714 714
                     }
715 715
                     if ($cookie['port']) {
716
-                        $cookieHeader .= ' $Port="' . $cookie['port'] . '";';
716
+                        $cookieHeader .= ' $Port="'.$cookie['port'].'";';
717 717
                     }
718 718
                 } else {
719
-                    $cookieHeader .= ' ' . $name . '=' . $cookie['value'] . ";";
719
+                    $cookieHeader .= ' '.$name.'='.$cookie['value'].";";
720 720
                 }
721 721
             }
722
-            $cookieHeader = 'Cookie:' . $version . substr($cookieHeader, 0, -1) . "\r\n";
722
+            $cookieHeader = 'Cookie:'.$version.substr($cookieHeader, 0, -1)."\r\n";
723 723
         }
724 724
 
725 725
         // omit port if default
726 726
         if (($port == 80 && in_array($method, array('http', 'http10'))) || ($port == 443 && $method == 'https')) {
727
-            $port =  '';
727
+            $port = '';
728 728
         } else {
729
-            $port = ':' . $port;
729
+            $port = ':'.$port;
730 730
         }
731 731
 
732
-        $op = 'POST ' . $uri . " HTTP/1.0\r\n" .
733
-            'User-Agent: ' . $this->user_agent . "\r\n" .
734
-            'Host: ' . $server . $port . "\r\n" .
735
-            $credentials .
736
-            $proxyCredentials .
737
-            $acceptedEncoding .
738
-            $encodingHdr .
739
-            'Accept-Charset: ' . implode(',', $this->accepted_charset_encodings) . "\r\n" .
740
-            $cookieHeader .
741
-            'Content-Type: ' . $req->content_type . "\r\nContent-Length: " .
742
-            strlen($payload) . "\r\n\r\n" .
732
+        $op = 'POST '.$uri." HTTP/1.0\r\n".
733
+            'User-Agent: '.$this->user_agent."\r\n".
734
+            'Host: '.$server.$port."\r\n".
735
+            $credentials.
736
+            $proxyCredentials.
737
+            $acceptedEncoding.
738
+            $encodingHdr.
739
+            'Accept-Charset: '.implode(',', $this->accepted_charset_encodings)."\r\n".
740
+            $cookieHeader.
741
+            'Content-Type: '.$req->content_type."\r\nContent-Length: ".
742
+            strlen($payload)."\r\n\r\n".
743 743
             $payload;
744 744
 
745
-        if ($this->debug > 1) {
745
+        if ($this->debug>1) {
746 746
             Logger::instance()->debugMessage("---SENDING---\n$op\n---END---");
747 747
         }
748 748
 
@@ -768,7 +768,7 @@  discard block
 block discarded – undo
768 768
         }
769 769
         $context = stream_context_create($contextOptions);
770 770
 
771
-        if ($timeout <= 0) {
771
+        if ($timeout<=0) {
772 772
             $connectTimeout = ini_get('default_socket_timeout');
773 773
         } else {
774 774
             $connectTimeout = $timeout;
@@ -780,7 +780,7 @@  discard block
 block discarded – undo
780 780
         $fp = @stream_socket_client("$transport://$connectServer:$connectPort", $this->errno, $this->errstr, $connectTimeout,
781 781
             STREAM_CLIENT_CONNECT, $context);
782 782
         if ($fp) {
783
-            if ($timeout > 0) {
783
+            if ($timeout>0) {
784 784
                 stream_set_timeout($fp, $timeout);
785 785
             }
786 786
         } else {
@@ -788,8 +788,8 @@  discard block
 block discarded – undo
788 788
                 $err = error_get_last();
789 789
                 $this->errstr = $err['message'];
790 790
             }
791
-            $this->errstr = 'Connect error: ' . $this->errstr;
792
-            $r = new Response(0, PhpXmlRpc::$xmlrpcerr['http_error'], $this->errstr . ' (' . $this->errno . ')');
791
+            $this->errstr = 'Connect error: '.$this->errstr;
792
+            $r = new Response(0, PhpXmlRpc::$xmlrpcerr['http_error'], $this->errstr.' ('.$this->errno.')');
793 793
 
794 794
             return $r;
795 795
         }
@@ -896,7 +896,7 @@  discard block
 block discarded – undo
896 896
             $encodingHdr = '';
897 897
         }
898 898
 
899
-        if ($this->debug > 1) {
899
+        if ($this->debug>1) {
900 900
             Logger::instance()->debugMessage("---SENDING---\n$payload\n---END---");
901 901
         }
902 902
 
@@ -906,7 +906,7 @@  discard block
 block discarded – undo
906 906
             } else {
907 907
                 $protocol = $method;
908 908
             }
909
-            $curl = curl_init($protocol . '://' . $server . ':' . $port . $this->path);
909
+            $curl = curl_init($protocol.'://'.$server.':'.$port.$this->path);
910 910
             if ($keepAlive) {
911 911
                 $this->xmlrpc_curl_handle = $curl;
912 912
             }
@@ -917,7 +917,7 @@  discard block
 block discarded – undo
917 917
         // results into variable
918 918
         curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
919 919
 
920
-        if ($this->debug > 1) {
920
+        if ($this->debug>1) {
921 921
             curl_setopt($curl, CURLOPT_VERBOSE, true);
922 922
             /// @todo allow callers to redirect curlopt_stderr to some stream which can be buffered
923 923
         }
@@ -943,7 +943,7 @@  discard block
 block discarded – undo
943 943
             }
944 944
         }
945 945
         // extra headers
946
-        $headers = array('Content-Type: ' . $req->content_type, 'Accept-Charset: ' . implode(',', $this->accepted_charset_encodings));
946
+        $headers = array('Content-Type: '.$req->content_type, 'Accept-Charset: '.implode(',', $this->accepted_charset_encodings));
947 947
         // if no keepalive is wanted, let the server know it in advance
948 948
         if (!$keepAlive) {
949 949
             $headers[] = 'Connection: close';
@@ -960,7 +960,7 @@  discard block
 block discarded – undo
960 960
         curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
961 961
         // timeout is borked
962 962
         if ($timeout) {
963
-            curl_setopt($curl, CURLOPT_TIMEOUT, $timeout == 1 ? 1 : $timeout - 1);
963
+            curl_setopt($curl, CURLOPT_TIMEOUT, $timeout == 1 ? 1 : $timeout-1);
964 964
         }
965 965
 
966 966
         if ($method == 'http10') {
@@ -970,11 +970,11 @@  discard block
 block discarded – undo
970 970
         }
971 971
 
972 972
         if ($username && $password) {
973
-            curl_setopt($curl, CURLOPT_USERPWD, $username . ':' . $password);
973
+            curl_setopt($curl, CURLOPT_USERPWD, $username.':'.$password);
974 974
             if (defined('CURLOPT_HTTPAUTH')) {
975 975
                 curl_setopt($curl, CURLOPT_HTTPAUTH, $authType);
976 976
             } elseif ($authType != 1) {
977
-                error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth is supported by the current PHP/curl install');
977
+                error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth is supported by the current PHP/curl install');
978 978
             }
979 979
         }
980 980
 
@@ -1015,13 +1015,13 @@  discard block
 block discarded – undo
1015 1015
             if ($proxyPort == 0) {
1016 1016
                 $proxyPort = 8080; // NB: even for HTTPS, local connection is on port 8080
1017 1017
             }
1018
-            curl_setopt($curl, CURLOPT_PROXY, $proxyHost . ':' . $proxyPort);
1018
+            curl_setopt($curl, CURLOPT_PROXY, $proxyHost.':'.$proxyPort);
1019 1019
             if ($proxyUsername) {
1020
-                curl_setopt($curl, CURLOPT_PROXYUSERPWD, $proxyUsername . ':' . $proxyPassword);
1020
+                curl_setopt($curl, CURLOPT_PROXYUSERPWD, $proxyUsername.':'.$proxyPassword);
1021 1021
                 if (defined('CURLOPT_PROXYAUTH')) {
1022 1022
                     curl_setopt($curl, CURLOPT_PROXYAUTH, $proxyAuthType);
1023 1023
                 } elseif ($proxyAuthType != 1) {
1024
-                    error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth to proxy is supported by the current PHP/curl install');
1024
+                    error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth to proxy is supported by the current PHP/curl install');
1025 1025
                 }
1026 1026
             }
1027 1027
         }
@@ -1032,7 +1032,7 @@  discard block
 block discarded – undo
1032 1032
         if (count($this->cookies)) {
1033 1033
             $cookieHeader = '';
1034 1034
             foreach ($this->cookies as $name => $cookie) {
1035
-                $cookieHeader .= $name . '=' . $cookie['value'] . '; ';
1035
+                $cookieHeader .= $name.'='.$cookie['value'].'; ';
1036 1036
             }
1037 1037
             curl_setopt($curl, CURLOPT_COOKIE, substr($cookieHeader, 0, -2));
1038 1038
         }
@@ -1043,13 +1043,13 @@  discard block
 block discarded – undo
1043 1043
 
1044 1044
         $result = curl_exec($curl);
1045 1045
 
1046
-        if ($this->debug > 1) {
1046
+        if ($this->debug>1) {
1047 1047
             $message = "---CURL INFO---\n";
1048 1048
             foreach (curl_getinfo($curl) as $name => $val) {
1049 1049
                 if (is_array($val)) {
1050 1050
                     $val = implode("\n", $val);
1051 1051
                 }
1052
-                $message .= $name . ': ' . $val . "\n";
1052
+                $message .= $name.': '.$val."\n";
1053 1053
             }
1054 1054
             $message .= '---END---';
1055 1055
             Logger::instance()->debugMessage($message);
@@ -1059,7 +1059,7 @@  discard block
 block discarded – undo
1059 1059
             /// @todo we should use a better check here - what if we get back '' or '0'?
1060 1060
 
1061 1061
             $this->errstr = 'no response';
1062
-            $resp = new Response(0, PhpXmlRpc::$xmlrpcerr['curl_fail'], PhpXmlRpc::$xmlrpcstr['curl_fail'] . ': ' . curl_error($curl));
1062
+            $resp = new Response(0, PhpXmlRpc::$xmlrpcerr['curl_fail'], PhpXmlRpc::$xmlrpcstr['curl_fail'].': '.curl_error($curl));
1063 1063
             curl_close($curl);
1064 1064
             if ($keepAlive) {
1065 1065
                 $this->xmlrpc_curl_handle = null;
@@ -1169,7 +1169,7 @@  discard block
 block discarded – undo
1169 1169
             $call['methodName'] = new Value($req->method(), 'string');
1170 1170
             $numParams = $req->getNumParams();
1171 1171
             $params = array();
1172
-            for ($i = 0; $i < $numParams; $i++) {
1172
+            for ($i = 0; $i<$numParams; $i++) {
1173 1173
                 $params[$i] = $req->getParam($i);
1174 1174
             }
1175 1175
             $call['params'] = new Value($params, 'array');
@@ -1195,15 +1195,15 @@  discard block
 block discarded – undo
1195 1195
             /// @todo test this code branch...
1196 1196
             $rets = $result->value();
1197 1197
             if (!is_array($rets)) {
1198
-                return false;       // bad return type from system.multicall
1198
+                return false; // bad return type from system.multicall
1199 1199
             }
1200 1200
             $numRets = count($rets);
1201 1201
             if ($numRets != count($reqs)) {
1202
-                return false;       // wrong number of return values.
1202
+                return false; // wrong number of return values.
1203 1203
             }
1204 1204
 
1205 1205
             $response = array();
1206
-            for ($i = 0; $i < $numRets; $i++) {
1206
+            for ($i = 0; $i<$numRets; $i++) {
1207 1207
                 $val = $rets[$i];
1208 1208
                 if (!is_array($val)) {
1209 1209
                     return false;
@@ -1211,7 +1211,7 @@  discard block
 block discarded – undo
1211 1211
                 switch (count($val)) {
1212 1212
                     case 1:
1213 1213
                         if (!isset($val[0])) {
1214
-                            return false;       // Bad value
1214
+                            return false; // Bad value
1215 1215
                         }
1216 1216
                         // Normal return value
1217 1217
                         $response[$i] = new Response($val[0], 0, '', 'phpvals');
@@ -1239,19 +1239,19 @@  discard block
 block discarded – undo
1239 1239
 
1240 1240
             $rets = $result->value();
1241 1241
             if ($rets->kindOf() != 'array') {
1242
-                return false;       // bad return type from system.multicall
1242
+                return false; // bad return type from system.multicall
1243 1243
             }
1244 1244
             $numRets = $rets->count();
1245 1245
             if ($numRets != count($reqs)) {
1246
-                return false;       // wrong number of return values.
1246
+                return false; // wrong number of return values.
1247 1247
             }
1248 1248
 
1249 1249
             $response = array();
1250
-            foreach($rets as $val) {
1250
+            foreach ($rets as $val) {
1251 1251
                 switch ($val->kindOf()) {
1252 1252
                     case 'array':
1253 1253
                         if ($val->count() != 1) {
1254
-                            return false;       // Bad value
1254
+                            return false; // Bad value
1255 1255
                         }
1256 1256
                         // Normal return value
1257 1257
                         $response[] = new Response($val[0]);
Please login to merge, or discard this patch.