Completed
Push — master ( a9ff63...64b192 )
by Gaetano
06:26 queued 01:55
created
src/Value.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
                     $this->me['struct'] = $val;
74 74
                     break;
75 75
                 default:
76
-                    error_log("XML-RPC: " . __METHOD__ . ": not a known type ($type)");
76
+                    error_log("XML-RPC: ".__METHOD__.": not a known type ($type)");
77 77
             }
78 78
         }
79 79
     }
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         }
95 95
 
96 96
         if ($typeOf !== 1) {
97
-            error_log("XML-RPC: " . __METHOD__ . ": not a scalar type ($type)");
97
+            error_log("XML-RPC: ".__METHOD__.": not a scalar type ($type)");
98 98
             return 0;
99 99
         }
100 100
 
@@ -111,10 +111,10 @@  discard block
 block discarded – undo
111 111
 
112 112
         switch ($this->mytype) {
113 113
             case 1:
114
-                error_log('XML-RPC: ' . __METHOD__ . ': scalar xmlrpc value can have only one value');
114
+                error_log('XML-RPC: '.__METHOD__.': scalar xmlrpc value can have only one value');
115 115
                 return 0;
116 116
             case 3:
117
-                error_log('XML-RPC: ' . __METHOD__ . ': cannot add anonymous scalar to struct xmlrpc value');
117
+                error_log('XML-RPC: '.__METHOD__.': cannot add anonymous scalar to struct xmlrpc value');
118 118
                 return 0;
119 119
             case 2:
120 120
                 // we're adding a scalar value to an array here
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
 
153 153
             return 1;
154 154
         } else {
155
-            error_log('XML-RPC: ' . __METHOD__ . ': already initialized as a [' . $this->kindOf() . ']');
155
+            error_log('XML-RPC: '.__METHOD__.': already initialized as a ['.$this->kindOf().']');
156 156
             return 0;
157 157
         }
158 158
     }
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 
180 180
             return 1;
181 181
         } else {
182
-            error_log('XML-RPC: ' . __METHOD__ . ': already initialized as a [' . $this->kindOf() . ']');
182
+            error_log('XML-RPC: '.__METHOD__.': already initialized as a ['.$this->kindOf().']');
183 183
             return 0;
184 184
         }
185 185
     }
@@ -218,19 +218,19 @@  discard block
 block discarded – undo
218 218
             case 1:
219 219
                 switch ($typ) {
220 220
                     case static::$xmlrpcBase64:
221
-                        $rs .= "<${typ}>" . base64_encode($val) . "</${typ}>";
221
+                        $rs .= "<${typ}>".base64_encode($val)."</${typ}>";
222 222
                         break;
223 223
                     case static::$xmlrpcBoolean:
224
-                        $rs .= "<${typ}>" . ($val ? '1' : '0') . "</${typ}>";
224
+                        $rs .= "<${typ}>".($val ? '1' : '0')."</${typ}>";
225 225
                         break;
226 226
                     case static::$xmlrpcString:
227 227
                         // G. Giunta 2005/2/13: do NOT use htmlentities, since
228 228
                         // it will produce named html entities, which are invalid xml
229
-                        $rs .= "<${typ}>" . Charset::instance()->encodeEntities($val, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "</${typ}>";
229
+                        $rs .= "<${typ}>".Charset::instance()->encodeEntities($val, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding)."</${typ}>";
230 230
                         break;
231 231
                     case static::$xmlrpcInt:
232 232
                     case static::$xmlrpcI4:
233
-                        $rs .= "<${typ}>" . (int)$val . "</${typ}>";
233
+                        $rs .= "<${typ}>".(int) $val."</${typ}>";
234 234
                         break;
235 235
                     case static::$xmlrpcDouble:
236 236
                         // avoid using standard conversion of float to string because it is locale-dependent,
@@ -238,15 +238,15 @@  discard block
 block discarded – undo
238 238
                         // sprintf('%F') could be most likely ok but it fails eg. on 2e-14.
239 239
                         // The code below tries its best at keeping max precision while avoiding exp notation,
240 240
                         // but there is of course no limit in the number of decimal places to be used...
241
-                        $rs .= "<${typ}>" . preg_replace('/\\.?0+$/', '', number_format((double)$val, 128, '.', '')) . "</${typ}>";
241
+                        $rs .= "<${typ}>".preg_replace('/\\.?0+$/', '', number_format((double) $val, 128, '.', ''))."</${typ}>";
242 242
                         break;
243 243
                     case static::$xmlrpcDateTime:
244 244
                         if (is_string($val)) {
245 245
                             $rs .= "<${typ}>${val}</${typ}>";
246 246
                         } elseif (is_a($val, 'DateTime')) {
247
-                            $rs .= "<${typ}>" . $val->format('Ymd\TH:i:s') . "</${typ}>";
247
+                            $rs .= "<${typ}>".$val->format('Ymd\TH:i:s')."</${typ}>";
248 248
                         } elseif (is_int($val)) {
249
-                            $rs .= "<${typ}>" . strftime("%Y%m%dT%H:%M:%S", $val) . "</${typ}>";
249
+                            $rs .= "<${typ}>".strftime("%Y%m%dT%H:%M:%S", $val)."</${typ}>";
250 250
                         } else {
251 251
                             // not really a good idea here: but what shall we output anyway? left for backward compat...
252 252
                             $rs .= "<${typ}>${val}</${typ}>";
@@ -268,13 +268,13 @@  discard block
 block discarded – undo
268 268
             case 3:
269 269
                 // struct
270 270
                 if ($this->_php_class) {
271
-                    $rs .= '<struct php_class="' . $this->_php_class . "\">\n";
271
+                    $rs .= '<struct php_class="'.$this->_php_class."\">\n";
272 272
                 } else {
273 273
                     $rs .= "<struct>\n";
274 274
                 }
275 275
                 $charsetEncoder = Charset::instance();
276 276
                 foreach ($val as $key2 => $val2) {
277
-                    $rs .= '<member><name>' . $charsetEncoder->encodeEntities($key2, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "</name>\n";
277
+                    $rs .= '<member><name>'.$charsetEncoder->encodeEntities($key2, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding)."</name>\n";
278 278
                     //$rs.=$this->serializeval($val2);
279 279
                     $rs .= $val2->serialize($charsetEncoding);
280 280
                     $rs .= "</member>\n";
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
         reset($this->me);
313 313
         list($typ, $val) = each($this->me);
314 314
 
315
-        return '<value>' . $this->serializedata($typ, $val, $charsetEncoding) . "</value>\n";
315
+        return '<value>'.$this->serializedata($typ, $val, $charsetEncoding)."</value>\n";
316 316
         //}
317 317
     }
318 318
 
Please login to merge, or discard this patch.
src/Request.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -34,9 +34,9 @@  discard block
 block discarded – undo
34 34
     public function xml_header($charsetEncoding = '')
35 35
     {
36 36
         if ($charsetEncoding != '') {
37
-            return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\" ?" . ">\n<methodCall>\n";
37
+            return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\" ?".">\n<methodCall>\n";
38 38
         } else {
39
-            return "<?xml version=\"1.0\"?" . ">\n<methodCall>\n";
39
+            return "<?xml version=\"1.0\"?".">\n<methodCall>\n";
40 40
         }
41 41
     }
42 42
 
@@ -48,15 +48,15 @@  discard block
 block discarded – undo
48 48
     public function createPayload($charsetEncoding = '')
49 49
     {
50 50
         if ($charsetEncoding != '') {
51
-            $this->content_type = 'text/xml; charset=' . $charsetEncoding;
51
+            $this->content_type = 'text/xml; charset='.$charsetEncoding;
52 52
         } else {
53 53
             $this->content_type = 'text/xml';
54 54
         }
55 55
         $this->payload = $this->xml_header($charsetEncoding);
56
-        $this->payload .= '<methodName>' . Charset::instance()->encodeEntities($this->methodname, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "</methodName>\n";
56
+        $this->payload .= '<methodName>'.Charset::instance()->encodeEntities($this->methodname, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding)."</methodName>\n";
57 57
         $this->payload .= "<params>\n";
58 58
         foreach ($this->params as $p) {
59
-            $this->payload .= "<param>\n" . $p->serialize($charsetEncoding) .
59
+            $this->payload .= "<param>\n".$p->serialize($charsetEncoding).
60 60
                 "</param>\n";
61 61
         }
62 62
         $this->payload .= "</params>\n";
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
         $this->httpResponse = array('raw_data' => $data, 'headers' => array(), 'cookies' => array());
177 177
 
178 178
         if ($data == '') {
179
-            error_log('XML-RPC: ' . __METHOD__ . ': no response received from server.');
179
+            error_log('XML-RPC: '.__METHOD__.': no response received from server.');
180 180
             return new Response(0, PhpXmlRpc::$xmlrpcerr['no_data'], PhpXmlRpc::$xmlrpcstr['no_data']);
181 181
         }
182 182
 
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
             $httpParser = new Http();
186 186
             try {
187 187
                 $this->httpResponse = $httpParser->parseResponseHeaders($data, $headersProcessed, $this->debug);
188
-            } catch(\Exception $e) {
188
+            } catch (\Exception $e) {
189 189
                 $r = new Response(0, $e->getCode(), $e->getMessage());
190 190
                 // failed processing of HTTP response headers
191 191
                 // save into response obj the full payload received, for debugging
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
         // idea from Luca Mariano <[email protected]> originally in PEARified version of the lib
205 205
         $pos = strrpos($data, '</methodResponse>');
206 206
         if ($pos !== false) {
207
-            $data = substr($data, 0, $pos + 17);
207
+            $data = substr($data, 0, $pos+17);
208 208
         }
209 209
 
210 210
         // try to 'guestimate' the character encoding of the received response
@@ -215,9 +215,9 @@  discard block
 block discarded – undo
215 215
             if ($start) {
216 216
                 $start += strlen('<!-- SERVER DEBUG INFO (BASE64 ENCODED):');
217 217
                 $end = strpos($data, '-->', $start);
218
-                $comments = substr($data, $start, $end - $start);
219
-                Logger::instance()->debugMessage("---SERVER DEBUG INFO (DECODED) ---\n\t" .
220
-                    str_replace("\n", "\n\t", base64_decode($comments)) . "\n---END---", $respEncoding);
218
+                $comments = substr($data, $start, $end-$start);
219
+                Logger::instance()->debugMessage("---SERVER DEBUG INFO (DECODED) ---\n\t".
220
+                    str_replace("\n", "\n\t", base64_decode($comments))."\n---END---", $respEncoding);
221 221
             }
222 222
         }
223 223
 
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
                     if (extension_loaded('mbstring')) {
246 246
                         $data = mb_convert_encoding($data, 'UTF-8', $respEncoding);
247 247
                     } else {
248
-                        error_log('XML-RPC: ' . __METHOD__ . ': invalid charset encoding of received response: ' . $respEncoding);
248
+                        error_log('XML-RPC: '.__METHOD__.': invalid charset encoding of received response: '.$respEncoding);
249 249
                     }
250 250
                 }
251 251
             }
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
                     xml_get_current_line_number($parser), xml_get_current_column_number($parser));
289 289
             }
290 290
             error_log($errStr);
291
-            $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_return'], PhpXmlRpc::$xmlrpcstr['invalid_return'] . ' (' . $errStr . ')');
291
+            $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_return'], PhpXmlRpc::$xmlrpcstr['invalid_return'].' ('.$errStr.')');
292 292
             xml_parser_free($parser);
293 293
             if ($this->debug) {
294 294
                 print $errStr;
@@ -301,13 +301,13 @@  discard block
 block discarded – undo
301 301
         }
302 302
         xml_parser_free($parser);
303 303
         // second error check: xml well formed but not xml-rpc compliant
304
-        if ($xmlRpcParser->_xh['isf'] > 1) {
304
+        if ($xmlRpcParser->_xh['isf']>1) {
305 305
             if ($this->debug) {
306 306
                 /// @todo echo something for user?
307 307
             }
308 308
 
309 309
             $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_return'],
310
-                PhpXmlRpc::$xmlrpcstr['invalid_return'] . ' ' . $xmlRpcParser->_xh['isf_reason']);
310
+                PhpXmlRpc::$xmlrpcstr['invalid_return'].' '.$xmlRpcParser->_xh['isf_reason']);
311 311
         }
312 312
         // third error check: parsing of the response has somehow gone boink.
313 313
         // NB: shall we omit this check, since we trust the parsing code?
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
             $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_return'],
319 319
                 PhpXmlRpc::$xmlrpcstr['invalid_return']);
320 320
         } else {
321
-            if ($this->debug > 1) {
321
+            if ($this->debug>1) {
322 322
                 Logger::instance()->debugMessage(
323 323
                     "---PARSED---\n".var_export($xmlRpcParser->_xh['value'], true)."\n---END---"
324 324
                 );
Please login to merge, or discard this patch.
src/Response.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -110,36 +110,36 @@
 block discarded – undo
110 110
     public function serialize($charsetEncoding = '')
111 111
     {
112 112
         if ($charsetEncoding != '') {
113
-            $this->content_type = 'text/xml; charset=' . $charsetEncoding;
113
+            $this->content_type = 'text/xml; charset='.$charsetEncoding;
114 114
         } else {
115 115
             $this->content_type = 'text/xml';
116 116
         }
117 117
         if (PhpXmlRpc::$xmlrpc_null_apache_encoding) {
118
-            $result = "<methodResponse xmlns:ex=\"" . PhpXmlRpc::$xmlrpc_null_apache_encoding_ns . "\">\n";
118
+            $result = "<methodResponse xmlns:ex=\"".PhpXmlRpc::$xmlrpc_null_apache_encoding_ns."\">\n";
119 119
         } else {
120 120
             $result = "<methodResponse>\n";
121 121
         }
122 122
         if ($this->errno) {
123 123
             // G. Giunta 2005/2/13: let non-ASCII response messages be tolerated by clients
124 124
             // by xml-encoding non ascii chars
125
-            $result .= "<fault>\n" .
126
-                "<value>\n<struct><member><name>faultCode</name>\n<value><int>" . $this->errno .
127
-                "</int></value>\n</member>\n<member>\n<name>faultString</name>\n<value><string>" .
128
-                Charset::instance()->encodeEntities($this->errstr, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "</string></value>\n</member>\n" .
125
+            $result .= "<fault>\n".
126
+                "<value>\n<struct><member><name>faultCode</name>\n<value><int>".$this->errno.
127
+                "</int></value>\n</member>\n<member>\n<name>faultString</name>\n<value><string>".
128
+                Charset::instance()->encodeEntities($this->errstr, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding)."</string></value>\n</member>\n".
129 129
                 "</struct>\n</value>\n</fault>";
130 130
         } else {
131 131
             if (!is_object($this->val) || !is_a($this->val, 'PhpXmlRpc\Value')) {
132 132
                 if (is_string($this->val) && $this->valtyp == 'xml') {
133
-                    $result .= "<params>\n<param>\n" .
134
-                        $this->val .
133
+                    $result .= "<params>\n<param>\n".
134
+                        $this->val.
135 135
                         "</param>\n</params>";
136 136
                 } else {
137 137
                     /// @todo try to build something serializable?
138 138
                     throw new \Exception('cannot serialize xmlrpc response objects whose content is native php values');
139 139
                 }
140 140
             } else {
141
-                $result .= "<params>\n<param>\n" .
142
-                    $this->val->serialize($charsetEncoding) .
141
+                $result .= "<params>\n<param>\n".
142
+                    $this->val->serialize($charsetEncoding).
143 143
                     "</param>\n</params>";
144 144
             }
145 145
         }
Please login to merge, or discard this patch.
src/Autoloader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
             return;
30 30
         }
31 31
 
32
-        if (is_file($file = __DIR__ . str_replace(array('PhpXmlRpc\\', '\\'), '/', $class).'.php')) {
32
+        if (is_file($file = __DIR__.str_replace(array('PhpXmlRpc\\', '\\'), '/', $class).'.php')) {
33 33
             require $file;
34 34
         }
35 35
     }
Please login to merge, or discard this patch.
src/Server.php 1 patch
Spacing   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -138,12 +138,12 @@  discard block
 block discarded – undo
138 138
      */
139 139
     public static function xmlrpc_debugmsg($msg)
140 140
     {
141
-        static::$_xmlrpc_debuginfo .= $msg . "\n";
141
+        static::$_xmlrpc_debuginfo .= $msg."\n";
142 142
     }
143 143
 
144 144
     public static function error_occurred($msg)
145 145
     {
146
-        static::$_xmlrpcs_occurred_errors .= $msg . "\n";
146
+        static::$_xmlrpcs_occurred_errors .= $msg."\n";
147 147
     }
148 148
 
149 149
     /**
@@ -162,10 +162,10 @@  discard block
 block discarded – undo
162 162
         // user debug info should be encoded by the end user using the INTERNAL_ENCODING
163 163
         $out = '';
164 164
         if ($this->debug_info != '') {
165
-            $out .= "<!-- SERVER DEBUG INFO (BASE64 ENCODED):\n" . base64_encode($this->debug_info) . "\n-->\n";
165
+            $out .= "<!-- SERVER DEBUG INFO (BASE64 ENCODED):\n".base64_encode($this->debug_info)."\n-->\n";
166 166
         }
167 167
         if (static::$_xmlrpc_debuginfo != '') {
168
-            $out .= "<!-- DEBUG INFO:\n" . Charset::instance()->encodeEntities(str_replace('--', '_-', static::$_xmlrpc_debuginfo), PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "\n-->\n";
168
+            $out .= "<!-- DEBUG INFO:\n".Charset::instance()->encodeEntities(str_replace('--', '_-', static::$_xmlrpc_debuginfo), PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding)."\n-->\n";
169 169
             // NB: a better solution MIGHT be to use CDATA, but we need to insert it
170 170
             // into return payload AFTER the beginning tag
171 171
             //$out .= "<![CDATA[ DEBUG INFO:\n\n" . str_replace(']]>', ']_]_>', static::$_xmlrpc_debuginfo) . "\n]]>\n";
@@ -195,8 +195,8 @@  discard block
 block discarded – undo
195 195
         $this->debug_info = '';
196 196
 
197 197
         // Save what we received, before parsing it
198
-        if ($this->debug > 1) {
199
-            $this->debugmsg("+++GOT+++\n" . $data . "\n+++END+++");
198
+        if ($this->debug>1) {
199
+            $this->debugmsg("+++GOT+++\n".$data."\n+++END+++");
200 200
         }
201 201
 
202 202
         $r = $this->parseRequestHeaders($data, $reqCharset, $respCharset, $respEncoding);
@@ -208,14 +208,14 @@  discard block
 block discarded – undo
208 208
         // save full body of request into response, for more debugging usages
209 209
         $r->raw_data = $rawData;
210 210
 
211
-        if ($this->debug > 2 && static::$_xmlrpcs_occurred_errors) {
212
-            $this->debugmsg("+++PROCESSING ERRORS AND WARNINGS+++\n" .
213
-                static::$_xmlrpcs_occurred_errors . "+++END+++");
211
+        if ($this->debug>2 && static::$_xmlrpcs_occurred_errors) {
212
+            $this->debugmsg("+++PROCESSING ERRORS AND WARNINGS+++\n".
213
+                static::$_xmlrpcs_occurred_errors."+++END+++");
214 214
         }
215 215
 
216 216
         $payload = $this->xml_header($respCharset);
217
-        if ($this->debug > 0) {
218
-            $payload = $payload . $this->serializeDebug($respCharset);
217
+        if ($this->debug>0) {
218
+            $payload = $payload.$this->serializeDebug($respCharset);
219 219
         }
220 220
 
221 221
         // G. Giunta 2006-01-27: do not create response serialization if it has
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
         if (empty($r->payload)) {
224 224
             $r->serialize($respCharset);
225 225
         }
226
-        $payload = $payload . $r->payload;
226
+        $payload = $payload.$r->payload;
227 227
 
228 228
         if ($returnPayload) {
229 229
             return $payload;
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
         // if we get a warning/error that has output some text before here, then we cannot
233 233
         // add a new header. We cannot say we are sending xml, either...
234 234
         if (!headers_sent()) {
235
-            header('Content-Type: ' . $r->content_type);
235
+            header('Content-Type: '.$r->content_type);
236 236
             // we do not know if client actually told us an accepted charset, but if he did
237 237
             // we have to tell him what we did
238 238
             header("Vary: Accept-Charset");
@@ -258,10 +258,10 @@  discard block
 block discarded – undo
258 258
             // do not output content-length header if php is compressing output for us:
259 259
             // it will mess up measurements
260 260
             if ($phpNoSelfCompress) {
261
-                header('Content-Length: ' . (int)strlen($payload));
261
+                header('Content-Length: '.(int) strlen($payload));
262 262
             }
263 263
         } else {
264
-            error_log('XML-RPC: ' . __METHOD__ . ': http headers already sent before response is fully generated. Check for php warning or error messages');
264
+            error_log('XML-RPC: '.__METHOD__.': http headers already sent before response is fully generated. Check for php warning or error messages');
265 265
         }
266 266
 
267 267
         print $payload;
@@ -310,9 +310,9 @@  discard block
 block discarded – undo
310 310
             $numParams = count($in);
311 311
         }
312 312
         foreach ($sigs as $curSig) {
313
-            if (count($curSig) == $numParams + 1) {
313
+            if (count($curSig) == $numParams+1) {
314 314
                 $itsOK = 1;
315
-                for ($n = 0; $n < $numParams; $n++) {
315
+                for ($n = 0; $n<$numParams; $n++) {
316 316
                     if (is_object($in)) {
317 317
                         $p = $in->getParam($n);
318 318
                         if ($p->kindOf() == 'scalar') {
@@ -325,10 +325,10 @@  discard block
 block discarded – undo
325 325
                     }
326 326
 
327 327
                     // param index is $n+1, as first member of sig is return type
328
-                    if ($pt != $curSig[$n + 1] && $curSig[$n + 1] != Value::$xmlrpcValue) {
328
+                    if ($pt != $curSig[$n+1] && $curSig[$n+1] != Value::$xmlrpcValue) {
329 329
                         $itsOK = 0;
330
-                        $pno = $n + 1;
331
-                        $wanted = $curSig[$n + 1];
330
+                        $pno = $n+1;
331
+                        $wanted = $curSig[$n+1];
332 332
                         $got = $pt;
333 333
                         break;
334 334
                     }
@@ -355,10 +355,10 @@  discard block
 block discarded – undo
355 355
         // check if $_SERVER is populated: it might have been disabled via ini file
356 356
         // (this is true even when in CLI mode)
357 357
         if (count($_SERVER) == 0) {
358
-            error_log('XML-RPC: ' . __METHOD__ . ': cannot parse request headers as $_SERVER is not populated');
358
+            error_log('XML-RPC: '.__METHOD__.': cannot parse request headers as $_SERVER is not populated');
359 359
         }
360 360
 
361
-        if ($this->debug > 1) {
361
+        if ($this->debug>1) {
362 362
             if (function_exists('getallheaders')) {
363 363
                 $this->debugmsg(''); // empty line
364 364
                 foreach (getallheaders() as $name => $val) {
@@ -380,13 +380,13 @@  discard block
 block discarded – undo
380 380
                 if (function_exists('gzinflate') && in_array($contentEncoding, $this->accepted_compression)) {
381 381
                     if ($contentEncoding == 'deflate' && $degzdata = @gzuncompress($data)) {
382 382
                         $data = $degzdata;
383
-                        if ($this->debug > 1) {
384
-                            $this->debugmsg("\n+++INFLATED REQUEST+++[" . strlen($data) . " chars]+++\n" . $data . "\n+++END+++");
383
+                        if ($this->debug>1) {
384
+                            $this->debugmsg("\n+++INFLATED REQUEST+++[".strlen($data)." chars]+++\n".$data."\n+++END+++");
385 385
                         }
386 386
                     } elseif ($contentEncoding == 'gzip' && $degzdata = @gzinflate(substr($data, 10))) {
387 387
                         $data = $degzdata;
388
-                        if ($this->debug > 1) {
389
-                            $this->debugmsg("+++INFLATED REQUEST+++[" . strlen($data) . " chars]+++\n" . $data . "\n+++END+++");
388
+                        if ($this->debug>1) {
389
+                            $this->debugmsg("+++INFLATED REQUEST+++[".strlen($data)." chars]+++\n".$data."\n+++END+++");
390 390
                         }
391 391
                     } else {
392 392
                         $r = new Response(0, PhpXmlRpc::$xmlrpcerr['server_decompress_fail'], PhpXmlRpc::$xmlrpcstr['server_decompress_fail']);
@@ -470,7 +470,7 @@  discard block
 block discarded – undo
470 470
                     if (extension_loaded('mbstring')) {
471 471
                         $data = mb_convert_encoding($data, 'UTF-8', $reqEncoding);
472 472
                     } else {
473
-                        error_log('XML-RPC: ' . __METHOD__ . ': invalid charset encoding of received request: ' . $reqEncoding);
473
+                        error_log('XML-RPC: '.__METHOD__.': invalid charset encoding of received request: '.$reqEncoding);
474 474
                     }
475 475
                 }
476 476
             }
@@ -503,7 +503,7 @@  discard block
 block discarded – undo
503 503
         if (!xml_parse($parser, $data, 1)) {
504 504
             // return XML error as a faultCode
505 505
             $r = new Response(0,
506
-                PhpXmlRpc::$xmlrpcerrxml + xml_get_error_code($parser),
506
+                PhpXmlRpc::$xmlrpcerrxml+xml_get_error_code($parser),
507 507
                 sprintf('XML error: %s at line %d, column %d',
508 508
                     xml_error_string(xml_get_error_code($parser)),
509 509
                     xml_get_current_line_number($parser), xml_get_current_column_number($parser)));
@@ -512,7 +512,7 @@  discard block
 block discarded – undo
512 512
             xml_parser_free($parser);
513 513
             $r = new Response(0,
514 514
                 PhpXmlRpc::$xmlrpcerr['invalid_request'],
515
-                PhpXmlRpc::$xmlrpcstr['invalid_request'] . ' ' . $xmlRpcParser->_xh['isf_reason']);
515
+                PhpXmlRpc::$xmlrpcstr['invalid_request'].' '.$xmlRpcParser->_xh['isf_reason']);
516 516
         } else {
517 517
             xml_parser_free($parser);
518 518
             // small layering violation in favor of speed and memory usage:
@@ -520,20 +520,20 @@  discard block
 block discarded – undo
520 520
             // most common scenario (xmlrpc values type server with some methods
521 521
             // registered as phpvals) that would mean a useless encode+decode pass
522 522
             if ($this->functions_parameters_type != 'xmlrpcvals' || (isset($this->dmap[$xmlRpcParser->_xh['method']]['parameters_type']) && ($this->dmap[$xmlRpcParser->_xh['method']]['parameters_type'] == 'phpvals'))) {
523
-                if ($this->debug > 1) {
524
-                    $this->debugmsg("\n+++PARSED+++\n" . var_export($xmlRpcParser->_xh['params'], true) . "\n+++END+++");
523
+                if ($this->debug>1) {
524
+                    $this->debugmsg("\n+++PARSED+++\n".var_export($xmlRpcParser->_xh['params'], true)."\n+++END+++");
525 525
                 }
526 526
                 $r = $this->execute($xmlRpcParser->_xh['method'], $xmlRpcParser->_xh['params'], $xmlRpcParser->_xh['pt']);
527 527
             } else {
528 528
                 // build a Request object with data parsed from xml
529 529
                 $req = new Request($xmlRpcParser->_xh['method']);
530 530
                 // now add parameters in
531
-                for ($i = 0; $i < count($xmlRpcParser->_xh['params']); $i++) {
531
+                for ($i = 0; $i<count($xmlRpcParser->_xh['params']); $i++) {
532 532
                     $req->addParam($xmlRpcParser->_xh['params'][$i]);
533 533
                 }
534 534
 
535
-                if ($this->debug > 1) {
536
-                    $this->debugmsg("\n+++PARSED+++\n" . var_export($req, true) . "\n+++END+++");
535
+                if ($this->debug>1) {
536
+                    $this->debugmsg("\n+++PARSED+++\n".var_export($req, true)."\n+++END+++");
537 537
                 }
538 538
                 $r = $this->execute($req);
539 539
             }
@@ -586,7 +586,7 @@  discard block
 block discarded – undo
586 586
                 return new Response(
587 587
                     0,
588 588
                     PhpXmlRpc::$xmlrpcerr['incorrect_params'],
589
-                    PhpXmlRpc::$xmlrpcstr['incorrect_params'] . ": ${errStr}"
589
+                    PhpXmlRpc::$xmlrpcstr['incorrect_params'].": ${errStr}"
590 590
                 );
591 591
             }
592 592
         }
@@ -599,7 +599,7 @@  discard block
 block discarded – undo
599 599
 
600 600
         if (is_array($func)) {
601 601
             if (is_object($func[0])) {
602
-                $funcName = get_class($func[0]) . '->' . $func[1];
602
+                $funcName = get_class($func[0]).'->'.$func[1];
603 603
             } else {
604 604
                 $funcName = implode('::', $func);
605 605
             }
@@ -611,17 +611,17 @@  discard block
 block discarded – undo
611 611
 
612 612
         // verify that function to be invoked is in fact callable
613 613
         if (!is_callable($func)) {
614
-            error_log("XML-RPC: " . __METHOD__ . ": function '$funcName' registered as method handler is not callable");
614
+            error_log("XML-RPC: ".__METHOD__.": function '$funcName' registered as method handler is not callable");
615 615
             return new Response(
616 616
                 0,
617 617
                 PhpXmlRpc::$xmlrpcerr['server_error'],
618
-                PhpXmlRpc::$xmlrpcstr['server_error'] . ": no function matches method"
618
+                PhpXmlRpc::$xmlrpcstr['server_error'].": no function matches method"
619 619
             );
620 620
         }
621 621
 
622 622
         // If debug level is 3, we should catch all errors generated during
623 623
         // processing of user function, and log them as part of response
624
-        if ($this->debug > 2) {
624
+        if ($this->debug>2) {
625 625
             self::$_xmlrpcs_prev_ehandler = set_error_handler(array('\PhpXmlRpc\Server', '_xmlrpcs_errorHandler'));
626 626
         }
627 627
 
@@ -634,14 +634,14 @@  discard block
 block discarded – undo
634 634
                     $r = call_user_func($func, $req);
635 635
                 }
636 636
                 if (!is_a($r, 'PhpXmlRpc\Response')) {
637
-                    error_log("XML-RPC: " . __METHOD__ . ": function '$funcName' registered as method handler does not return an xmlrpc response object but a " . gettype($r));
637
+                    error_log("XML-RPC: ".__METHOD__.": function '$funcName' registered as method handler does not return an xmlrpc response object but a ".gettype($r));
638 638
                     if (is_a($r, 'PhpXmlRpc\Value')) {
639 639
                         $r = new Response($r);
640 640
                     } else {
641 641
                         $r = new Response(
642 642
                             0,
643 643
                             PhpXmlRpc::$xmlrpcerr['server_error'],
644
-                            PhpXmlRpc::$xmlrpcstr['server_error'] . ": function does not return xmlrpc response object"
644
+                            PhpXmlRpc::$xmlrpcstr['server_error'].": function does not return xmlrpc response object"
645 645
                         );
646 646
                     }
647 647
                 }
@@ -657,7 +657,7 @@  discard block
 block discarded – undo
657 657
                         // mimic EPI behaviour: if we get an array that looks like an error, make it
658 658
                         // an eror response
659 659
                         if (is_array($r) && array_key_exists('faultCode', $r) && array_key_exists('faultString', $r)) {
660
-                            $r = new Response(0, (integer)$r['faultCode'], (string)$r['faultString']);
660
+                            $r = new Response(0, (integer) $r['faultCode'], (string) $r['faultString']);
661 661
                         } else {
662 662
                             // functions using EPI api should NOT return resp objects,
663 663
                             // so make sure we encode the return type correctly
@@ -679,7 +679,7 @@  discard block
 block discarded – undo
679 679
             // in the called function, we wrap it in a proper error-response
680 680
             switch ($this->exception_handling) {
681 681
                 case 2:
682
-                    if ($this->debug > 2) {
682
+                    if ($this->debug>2) {
683 683
                         if (self::$_xmlrpcs_prev_ehandler) {
684 684
                             set_error_handler(self::$_xmlrpcs_prev_ehandler);
685 685
                         } else {
@@ -695,7 +695,7 @@  discard block
 block discarded – undo
695 695
                     $r = new Response(0, PhpXmlRpc::$xmlrpcerr['server_error'], PhpXmlRpc::$xmlrpcstr['server_error']);
696 696
             }
697 697
         }
698
-        if ($this->debug > 2) {
698
+        if ($this->debug>2) {
699 699
             // note: restore the error handler we found before calling the
700 700
             // user func, even if it has been changed inside the func itself
701 701
             if (self::$_xmlrpcs_prev_ehandler) {
@@ -715,7 +715,7 @@  discard block
 block discarded – undo
715 715
      */
716 716
     protected function debugmsg($string)
717 717
     {
718
-        $this->debug_info .= $string . "\n";
718
+        $this->debug_info .= $string."\n";
719 719
     }
720 720
 
721 721
     /**
@@ -725,9 +725,9 @@  discard block
 block discarded – undo
725 725
     protected function xml_header($charsetEncoding = '')
726 726
     {
727 727
         if ($charsetEncoding != '') {
728
-            return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\"?" . ">\n";
728
+            return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\"?".">\n";
729 729
         } else {
730
-            return "<?xml version=\"1.0\"?" . ">\n";
730
+            return "<?xml version=\"1.0\"?".">\n";
731 731
         }
732 732
     }
733 733
 
@@ -935,12 +935,12 @@  discard block
 block discarded – undo
935 935
         }
936 936
 
937 937
         $req = new Request($methName->scalarval());
938
-        foreach($params as $i => $param) {
938
+        foreach ($params as $i => $param) {
939 939
             if (!$req->addParam($param)) {
940 940
                 $i++; // for error message, we count params from 1
941 941
                 return static::_xmlrpcs_multicall_error(new Response(0,
942 942
                     PhpXmlRpc::$xmlrpcerr['incorrect_params'],
943
-                    PhpXmlRpc::$xmlrpcstr['incorrect_params'] . ": probable xml error in param " . $i));
943
+                    PhpXmlRpc::$xmlrpcstr['incorrect_params'].": probable xml error in param ".$i));
944 944
             }
945 945
         }
946 946
 
@@ -998,12 +998,12 @@  discard block
 block discarded – undo
998 998
         // let accept a plain list of php parameters, beside a single xmlrpc msg object
999 999
         if (is_object($req)) {
1000 1000
             $calls = $req->getParam(0);
1001
-            foreach($calls as $call) {
1001
+            foreach ($calls as $call) {
1002 1002
                 $result[] = static::_xmlrpcs_multicall_do_call($server, $call);
1003 1003
             }
1004 1004
         } else {
1005 1005
             $numCalls = count($req);
1006
-            for ($i = 0; $i < $numCalls; $i++) {
1006
+            for ($i = 0; $i<$numCalls; $i++) {
1007 1007
                 $result[$i] = static::_xmlrpcs_multicall_do_call_phpvals($server, $req[$i]);
1008 1008
             }
1009 1009
         }
Please login to merge, or discard this patch.
src/Helper/Http.php 1 patch
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -22,12 +22,12 @@  discard block
 block discarded – undo
22 22
 
23 23
         // read chunk-size, chunk-extension (if any) and crlf
24 24
         // get the position of the linebreak
25
-        $chunkEnd = strpos($buffer, "\r\n") + 2;
25
+        $chunkEnd = strpos($buffer, "\r\n")+2;
26 26
         $temp = substr($buffer, 0, $chunkEnd);
27 27
         $chunkSize = hexdec(trim($temp));
28 28
         $chunkStart = $chunkEnd;
29
-        while ($chunkSize > 0) {
30
-            $chunkEnd = strpos($buffer, "\r\n", $chunkStart + $chunkSize);
29
+        while ($chunkSize>0) {
30
+            $chunkEnd = strpos($buffer, "\r\n", $chunkStart+$chunkSize);
31 31
 
32 32
             // just in case we got a broken connection
33 33
             if ($chunkEnd == false) {
@@ -39,19 +39,19 @@  discard block
 block discarded – undo
39 39
             }
40 40
 
41 41
             // read chunk-data and crlf
42
-            $chunk = substr($buffer, $chunkStart, $chunkEnd - $chunkStart);
42
+            $chunk = substr($buffer, $chunkStart, $chunkEnd-$chunkStart);
43 43
             // append chunk-data to entity-body
44 44
             $new .= $chunk;
45 45
             // length := length + chunk-size
46 46
             $length += strlen($chunk);
47 47
             // read chunk-size and crlf
48
-            $chunkStart = $chunkEnd + 2;
48
+            $chunkStart = $chunkEnd+2;
49 49
 
50
-            $chunkEnd = strpos($buffer, "\r\n", $chunkStart) + 2;
50
+            $chunkEnd = strpos($buffer, "\r\n", $chunkStart)+2;
51 51
             if ($chunkEnd == false) {
52 52
                 break; //just in case we got a broken connection
53 53
             }
54
-            $temp = substr($buffer, $chunkStart, $chunkEnd - $chunkStart);
54
+            $temp = substr($buffer, $chunkStart, $chunkEnd-$chunkStart);
55 55
             $chunkSize = hexdec(trim($temp));
56 56
             $chunkStart = $chunkEnd;
57 57
         }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      * @return array with keys 'headers' and 'cookies'
69 69
      * @throws \Exception
70 70
      */
71
-    public function parseResponseHeaders(&$data, $headersProcessed = false, $debug=0)
71
+    public function parseResponseHeaders(&$data, $headersProcessed = false, $debug = 0)
72 72
     {
73 73
         $httpResponse = array('raw_data' => $data, 'headers'=> array(), 'cookies' => array());
74 74
 
@@ -78,11 +78,11 @@  discard block
 block discarded – undo
78 78
             // (even though it is not valid http)
79 79
             $pos = strpos($data, "\r\n\r\n");
80 80
             if ($pos || is_int($pos)) {
81
-                $bd = $pos + 4;
81
+                $bd = $pos+4;
82 82
             } else {
83 83
                 $pos = strpos($data, "\n\n");
84 84
                 if ($pos || is_int($pos)) {
85
-                    $bd = $pos + 2;
85
+                    $bd = $pos+2;
86 86
                 } else {
87 87
                     // No separation between response headers and body: fault?
88 88
                     $bd = 0;
@@ -93,8 +93,8 @@  discard block
 block discarded – undo
93 93
                 // maybe we could take them into account, too?
94 94
                 $data = substr($data, $bd);
95 95
             } else {
96
-                error_log('XML-RPC: ' . __METHOD__ . ': HTTPS via proxy error, tunnel connection possibly failed');
97
-                throw new \Exception(PhpXmlRpc::$xmlrpcstr['http_error'] . ' (HTTPS via proxy error, tunnel connection possibly failed)', PhpXmlRpc::$xmlrpcerr['http_error']);
96
+                error_log('XML-RPC: '.__METHOD__.': HTTPS via proxy error, tunnel connection possibly failed');
97
+                throw new \Exception(PhpXmlRpc::$xmlrpcstr['http_error'].' (HTTPS via proxy error, tunnel connection possibly failed)', PhpXmlRpc::$xmlrpcerr['http_error']);
98 98
             }
99 99
         }
100 100
 
@@ -111,20 +111,20 @@  discard block
 block discarded – undo
111 111
             $data = substr($data, $pos);
112 112
         }
113 113
         if (!preg_match('/^HTTP\/[0-9.]+ 200 /', $data)) {
114
-            $errstr = substr($data, 0, strpos($data, "\n") - 1);
115
-            error_log('XML-RPC: ' . __METHOD__ . ': HTTP error, got response: ' . $errstr);
116
-            throw new \Exception(PhpXmlRpc::$xmlrpcstr['http_error'] . ' (' . $errstr . ')', PhpXmlRpc::$xmlrpcerr['http_error']);
114
+            $errstr = substr($data, 0, strpos($data, "\n")-1);
115
+            error_log('XML-RPC: '.__METHOD__.': HTTP error, got response: '.$errstr);
116
+            throw new \Exception(PhpXmlRpc::$xmlrpcstr['http_error'].' ('.$errstr.')', PhpXmlRpc::$xmlrpcerr['http_error']);
117 117
         }
118 118
 
119 119
         // be tolerant to usage of \n instead of \r\n to separate headers and data
120 120
         // (even though it is not valid http)
121 121
         $pos = strpos($data, "\r\n\r\n");
122 122
         if ($pos || is_int($pos)) {
123
-            $bd = $pos + 4;
123
+            $bd = $pos+4;
124 124
         } else {
125 125
             $pos = strpos($data, "\n\n");
126 126
             if ($pos || is_int($pos)) {
127
-                $bd = $pos + 2;
127
+                $bd = $pos+2;
128 128
             } else {
129 129
                 // No separation between response headers and body: fault?
130 130
                 // we could take some action here instead of going on...
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
         while (list(, $line) = @each($ar)) {
137 137
             // take care of multi-line headers and cookies
138 138
             $arr = explode(':', $line, 2);
139
-            if (count($arr) > 1) {
139
+            if (count($arr)>1) {
140 140
                 $headerName = strtolower(trim($arr[0]));
141 141
                 /// @todo some other headers (the ones that allow a CSV list of values)
142 142
                 /// do allow many values to be passed using multiple header lines.
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
                         // glue together all received cookies, using a comma to separate them
155 155
                         // (same as php does with getallheaders())
156 156
                         if (isset($httpResponse['headers'][$headerName])) {
157
-                            $httpResponse['headers'][$headerName] .= ', ' . trim($cookie);
157
+                            $httpResponse['headers'][$headerName] .= ', '.trim($cookie);
158 158
                         } else {
159 159
                             $httpResponse['headers'][$headerName] = trim($cookie);
160 160
                         }
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
                 }
184 184
             } elseif (isset($headerName)) {
185 185
                 /// @todo version1 cookies might span multiple lines, thus breaking the parsing above
186
-                $httpResponse['headers'][$headerName] .= ' ' . trim($line);
186
+                $httpResponse['headers'][$headerName] .= ' '.trim($line);
187 187
             }
188 188
         }
189 189
 
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
             // Decode chunked encoding sent by http 1.1 servers
207 207
             if (isset($httpResponse['headers']['transfer-encoding']) && $httpResponse['headers']['transfer-encoding'] == 'chunked') {
208 208
                 if (!$data = Http::decodeChunked($data)) {
209
-                    error_log('XML-RPC: ' . __METHOD__ . ': errors occurred when trying to rebuild the chunked data received from server');
209
+                    error_log('XML-RPC: '.__METHOD__.': errors occurred when trying to rebuild the chunked data received from server');
210 210
                     throw new \Exception(PhpXmlRpc::$xmlrpcstr['dechunk_fail'], PhpXmlRpc::$xmlrpcerr['dechunk_fail']);
211 211
                 }
212 212
             }
@@ -221,19 +221,19 @@  discard block
 block discarded – undo
221 221
                         if ($httpResponse['headers']['content-encoding'] == 'deflate' && $degzdata = @gzuncompress($data)) {
222 222
                             $data = $degzdata;
223 223
                             if ($debug) {
224
-                                Logger::instance()->debugMessage("---INFLATED RESPONSE---[" . strlen($data) . " chars]---\n$data\n---END---");
224
+                                Logger::instance()->debugMessage("---INFLATED RESPONSE---[".strlen($data)." chars]---\n$data\n---END---");
225 225
                             }
226 226
                         } elseif ($httpResponse['headers']['content-encoding'] == 'gzip' && $degzdata = @gzinflate(substr($data, 10))) {
227 227
                             $data = $degzdata;
228 228
                             if ($debug) {
229
-                                Logger::instance()->debugMessage("---INFLATED RESPONSE---[" . strlen($data) . " chars]---\n$data\n---END---");
229
+                                Logger::instance()->debugMessage("---INFLATED RESPONSE---[".strlen($data)." chars]---\n$data\n---END---");
230 230
                             }
231 231
                         } else {
232
-                            error_log('XML-RPC: ' . __METHOD__ . ': errors occurred when trying to decode the deflated data received from server');
232
+                            error_log('XML-RPC: '.__METHOD__.': errors occurred when trying to decode the deflated data received from server');
233 233
                             throw new \Exception(PhpXmlRpc::$xmlrpcstr['decompress_fail'], PhpXmlRpc::$xmlrpcerr['decompress_fail']);
234 234
                         }
235 235
                     } else {
236
-                        error_log('XML-RPC: ' . __METHOD__ . ': the server sent deflated data. Your php install must have the Zlib extension compiled in to support this.');
236
+                        error_log('XML-RPC: '.__METHOD__.': the server sent deflated data. Your php install must have the Zlib extension compiled in to support this.');
237 237
                         throw new \Exception(PhpXmlRpc::$xmlrpcstr['cannot_decompress'], PhpXmlRpc::$xmlrpcerr['cannot_decompress']);
238 238
                     }
239 239
                 }
Please login to merge, or discard this patch.
src/Helper/Charset.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -51,12 +51,12 @@  discard block
 block discarded – undo
51 51
 
52 52
     private function __construct()
53 53
     {
54
-        for ($i = 0; $i < 32; $i++) {
54
+        for ($i = 0; $i<32; $i++) {
55 55
             $this->xml_iso88591_Entities["in"][] = chr($i);
56 56
             $this->xml_iso88591_Entities["out"][] = "&#{$i};";
57 57
         }
58 58
 
59
-        for ($i = 160; $i < 256; $i++) {
59
+        for ($i = 160; $i<256; $i++) {
60 60
             $this->xml_iso88591_Entities["in"][] = chr($i);
61 61
             $this->xml_iso88591_Entities["out"][] = "&#{$i};";
62 62
         }
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
             $srcEncoding = PhpXmlRpc::$xmlrpc_internalencoding;
95 95
         }
96 96
 
97
-        switch (strtoupper($srcEncoding . '_' . $destEncoding)) {
97
+        switch (strtoupper($srcEncoding.'_'.$destEncoding)) {
98 98
             case 'ISO-8859-1_':
99 99
             case 'ISO-8859-1_US-ASCII':
100 100
                 $escapedData = str_replace(array('&', '"', "'", '<', '>'), array('&amp;', '&quot;', '&apos;', '&lt;', '&gt;'), $data);
@@ -119,13 +119,13 @@  discard block
 block discarded – undo
119 119
                 // NB: this will choke on invalid UTF-8, going most likely beyond EOF
120 120
                 $escapedData = '';
121 121
                 // be kind to users creating string xmlrpc values out of different php types
122
-                $data = (string)$data;
122
+                $data = (string) $data;
123 123
                 $ns = strlen($data);
124
-                for ($nn = 0; $nn < $ns; $nn++) {
124
+                for ($nn = 0; $nn<$ns; $nn++) {
125 125
                     $ch = $data[$nn];
126 126
                     $ii = ord($ch);
127 127
                     //1 7 0bbbbbbb (127)
128
-                    if ($ii < 128) {
128
+                    if ($ii<128) {
129 129
                         /// @todo shall we replace this with a (supposedly) faster str_replace?
130 130
                         switch ($ii) {
131 131
                             case 34:
@@ -149,33 +149,33 @@  discard block
 block discarded – undo
149 149
                     } //2 11 110bbbbb 10bbbbbb (2047)
150 150
                     elseif ($ii >> 5 == 6) {
151 151
                         $b1 = ($ii & 31);
152
-                        $ii = ord($data[$nn + 1]);
152
+                        $ii = ord($data[$nn+1]);
153 153
                         $b2 = ($ii & 63);
154
-                        $ii = ($b1 * 64) + $b2;
154
+                        $ii = ($b1 * 64)+$b2;
155 155
                         $ent = sprintf('&#%d;', $ii);
156 156
                         $escapedData .= $ent;
157 157
                         $nn += 1;
158 158
                     } //3 16 1110bbbb 10bbbbbb 10bbbbbb
159 159
                     elseif ($ii >> 4 == 14) {
160 160
                         $b1 = ($ii & 15);
161
-                        $ii = ord($data[$nn + 1]);
161
+                        $ii = ord($data[$nn+1]);
162 162
                         $b2 = ($ii & 63);
163
-                        $ii = ord($data[$nn + 2]);
163
+                        $ii = ord($data[$nn+2]);
164 164
                         $b3 = ($ii & 63);
165
-                        $ii = ((($b1 * 64) + $b2) * 64) + $b3;
165
+                        $ii = ((($b1 * 64)+$b2) * 64)+$b3;
166 166
                         $ent = sprintf('&#%d;', $ii);
167 167
                         $escapedData .= $ent;
168 168
                         $nn += 2;
169 169
                     } //4 21 11110bbb 10bbbbbb 10bbbbbb 10bbbbbb
170 170
                     elseif ($ii >> 3 == 30) {
171 171
                         $b1 = ($ii & 7);
172
-                        $ii = ord($data[$nn + 1]);
172
+                        $ii = ord($data[$nn+1]);
173 173
                         $b2 = ($ii & 63);
174
-                        $ii = ord($data[$nn + 2]);
174
+                        $ii = ord($data[$nn+2]);
175 175
                         $b3 = ($ii & 63);
176
-                        $ii = ord($data[$nn + 3]);
176
+                        $ii = ord($data[$nn+3]);
177 177
                         $b4 = ($ii & 63);
178
-                        $ii = ((((($b1 * 64) + $b2) * 64) + $b3) * 64) + $b4;
178
+                        $ii = ((((($b1 * 64)+$b2) * 64)+$b3) * 64)+$b4;
179 179
                         $ent = sprintf('&#%d;', $ii);
180 180
                         $escapedData .= $ent;
181 181
                         $nn += 3;
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
             */
204 204
             default:
205 205
                 $escapedData = '';
206
-                error_log('XML-RPC: ' . __METHOD__ . ": Converting from $srcEncoding to $destEncoding: not supported...");
206
+                error_log('XML-RPC: '.__METHOD__.": Converting from $srcEncoding to $destEncoding: not supported...");
207 207
         }
208 208
 
209 209
         return $escapedData;
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
             case 'iso88591':
256 256
                 return $this->xml_iso88591_Entities;
257 257
             default:
258
-                throw new \Exception('Unsupported charset: ' . $charset);
258
+                throw new \Exception('Unsupported charset: '.$charset);
259 259
         }
260 260
     }
261 261
 
Please login to merge, or discard this patch.
src/Helper/Date.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
                 // of PHP
33 33
                 $t = gmstrftime("%Y%m%dT%H:%M:%S", $timet);
34 34
             } else {
35
-                $t = strftime("%Y%m%dT%H:%M:%S", $timet - date('Z'));
35
+                $t = strftime("%Y%m%dT%H:%M:%S", $timet-date('Z'));
36 36
             }
37 37
         }
38 38
 
Please login to merge, or discard this patch.
src/Helper/Logger.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * @param string $message
29 29
      * @param string $encoding
30 30
      */
31
-    public function debugMessage($message, $encoding=null)
31
+    public function debugMessage($message, $encoding = null)
32 32
     {
33 33
         // US-ASCII is a warning for PHP and a fatal for HHVM
34 34
         if ($encoding == 'US-ASCII') {
Please login to merge, or discard this patch.