Completed
Push — master ( b5d242...6a87bd )
by Gaetano
04:44
created
src/Encoder.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
                 return $xmlrpcVal->scalarval();
73 73
             case 'array':
74 74
                 $arr = array();
75
-                foreach($xmlrpcVal as $value) {
75
+                foreach ($xmlrpcVal as $value) {
76 76
                     $arr[] = $this->decode($value, $options);
77 77
                 }
78 78
 
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
             case 'msg':
103 103
                 $paramCount = $xmlrpcVal->getNumParams();
104 104
                 $arr = array();
105
-                for ($i = 0; $i < $paramCount; $i++) {
105
+                for ($i = 0; $i<$paramCount; $i++) {
106 106
                     $arr[] = $this->decode($xmlrpcVal->getParam($i), $options);
107 107
                 }
108 108
 
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
                 break;
204 204
             case 'resource':
205 205
                 if (in_array('extension_api', $options)) {
206
-                    $xmlrpcVal = new Value((int)$phpVal, Value::$xmlrpcInt);
206
+                    $xmlrpcVal = new Value((int) $phpVal, Value::$xmlrpcInt);
207 207
                 } else {
208 208
                     $xmlrpcVal = new Value();
209 209
                 }
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
                     if (extension_loaded('mbstring')) {
247 247
                         $xmlVal = mb_convert_encoding($xmlVal, 'UTF-8', $valEncoding);
248 248
                     } else {
249
-                        error_log('XML-RPC: ' . __METHOD__ . ': invalid charset encoding of xml text: ' . $valEncoding);
249
+                        error_log('XML-RPC: '.__METHOD__.': invalid charset encoding of xml text: '.$valEncoding);
250 250
                     }
251 251
                 }
252 252
             }
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
             return false;
279 279
         }
280 280
         xml_parser_free($parser);
281
-        if ($xmlRpcParser->_xh['isf'] > 1) {
281
+        if ($xmlRpcParser->_xh['isf']>1) {
282 282
             // test that $xmlrpc->_xh['value'] is an obj, too???
283 283
 
284 284
             error_log($xmlRpcParser->_xh['isf_reason']);
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
                 return $r;
300 300
             case 'methodcall':
301 301
                 $req = new Request($xmlRpcParser->_xh['method']);
302
-                for ($i = 0; $i < count($xmlRpcParser->_xh['params']); $i++) {
302
+                for ($i = 0; $i<count($xmlRpcParser->_xh['params']); $i++) {
303 303
                     $req->addParam($xmlRpcParser->_xh['params'][$i]);
304 304
                 }
305 305
 
Please login to merge, or discard this patch.
src/Value.php 2 patches
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.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      *
47 47
      * When no value or type is passed in, the value is left uninitialized, and the value can be added later.
48 48
      *
49
-     * @param mixed $val if passing in an array, all array elements should be PhpXmlRpc\Value themselves
49
+     * @param integer $val if passing in an array, all array elements should be PhpXmlRpc\Value themselves
50 50
      * @param string $type any valid xmlrpc type name (lowercase): i4, int, boolean, string, double, dateTime.iso8601,
51 51
      *                     base64, array, struct, null.
52 52
      *                     If null, 'string' is assumed.
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
      * If the xmlrpc value is empty (uninitialized), this method makes it a scalar value, and sets that value.
96 96
      * Fails if the xmlrpc value is not an array and already initialized.
97 97
      *
98
-     * @param mixed $val
98
+     * @param string $val
99 99
      * @param string $type allowed values: i4, i8, int, boolean, string, double, dateTime.iso8601, base64, null.
100 100
      *
101 101
      * @return int 1 or 0 on failure
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/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/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.
src/Helper/XMLParser.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     public function xmlrpc_se($parser, $name, $attrs, $acceptSingleVals = false)
65 65
     {
66 66
         // if invalid xmlrpc already detected, skip all processing
67
-        if ($this->_xh['isf'] < 2) {
67
+        if ($this->_xh['isf']<2) {
68 68
             // check for correct element nesting
69 69
             // top level element can only be of 2 types
70 70
             /// @todo optimization creep: save this check into a bool variable, instead of using count() every time:
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
                     $this->_xh['isf'] = 1;
160 160
                     break;
161 161
                 case 'MEMBER':
162
-                    $this->_xh['valuestack'][count($this->_xh['valuestack']) - 1]['name'] = ''; // set member name to null, in case we do not find in the xml later on
162
+                    $this->_xh['valuestack'][count($this->_xh['valuestack'])-1]['name'] = ''; // set member name to null, in case we do not find in the xml later on
163 163
                     //$this->_xh['ac']='';
164 164
                 // Drop trough intentionally
165 165
                 case 'PARAM':
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
      */
212 212
     public function xmlrpc_ee($parser, $name, $rebuildXmlrpcvals = true)
213 213
     {
214
-        if ($this->_xh['isf'] < 2) {
214
+        if ($this->_xh['isf']<2) {
215 215
             // push this element name from stack
216 216
             // NB: if XML validates, correct opening/closing is guaranteed and
217 217
             // we do not have to check for $name == $currElem.
@@ -237,8 +237,8 @@  discard block
 block discarded – undo
237 237
                         // check if we are inside an array or struct:
238 238
                         // if value just built is inside an array, let's move it into array on the stack
239 239
                         $vscount = count($this->_xh['valuestack']);
240
-                        if ($vscount && $this->_xh['valuestack'][$vscount - 1]['type'] == 'ARRAY') {
241
-                            $this->_xh['valuestack'][$vscount - 1]['values'][] = $temp;
240
+                        if ($vscount && $this->_xh['valuestack'][$vscount-1]['type'] == 'ARRAY') {
241
+                            $this->_xh['valuestack'][$vscount-1]['values'][] = $temp;
242 242
                         } else {
243 243
                             $this->_xh['value'] = $temp;
244 244
                         }
@@ -252,8 +252,8 @@  discard block
 block discarded – undo
252 252
                         // check if we are inside an array or struct:
253 253
                         // if value just built is inside an array, let's move it into array on the stack
254 254
                         $vscount = count($this->_xh['valuestack']);
255
-                        if ($vscount && $this->_xh['valuestack'][$vscount - 1]['type'] == 'ARRAY') {
256
-                            $this->_xh['valuestack'][$vscount - 1]['values'][] = $this->_xh['value'];
255
+                        if ($vscount && $this->_xh['valuestack'][$vscount-1]['type'] == 'ARRAY') {
256
+                            $this->_xh['valuestack'][$vscount-1]['values'][] = $this->_xh['value'];
257 257
                         }
258 258
                     }
259 259
                     break;
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
                         $this->_xh['value'] = $this->_xh['ac'];
272 272
                     } elseif ($name == 'DATETIME.ISO8601') {
273 273
                         if (!preg_match('/^[0-9]{8}T[0-9]{2}:[0-9]{2}:[0-9]{2}$/', $this->_xh['ac'])) {
274
-                            error_log('XML-RPC: ' . __METHOD__ . ': invalid value received in DATETIME: ' . $this->_xh['ac']);
274
+                            error_log('XML-RPC: '.__METHOD__.': invalid value received in DATETIME: '.$this->_xh['ac']);
275 275
                         }
276 276
                         $this->_xh['vt'] = Value::$xmlrpcDateTime;
277 277
                         $this->_xh['value'] = $this->_xh['ac'];
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
                         } else {
291 291
                             // log if receiving something strange, even though we set the value to false anyway
292 292
                             if ($this->_xh['ac'] != '0' && strcasecmp($this->_xh['ac'], 'false') != 0) {
293
-                                error_log('XML-RPC: ' . __METHOD__ . ': invalid value received in BOOLEAN: ' . $this->_xh['ac']);
293
+                                error_log('XML-RPC: '.__METHOD__.': invalid value received in BOOLEAN: '.$this->_xh['ac']);
294 294
                             }
295 295
                             $this->_xh['value'] = false;
296 296
                         }
@@ -300,37 +300,37 @@  discard block
 block discarded – undo
300 300
                         // NOTE: regexp could be much stricter than this...
301 301
                         if (!preg_match('/^[+-eE0123456789 \t.]+$/', $this->_xh['ac'])) {
302 302
                             /// @todo: find a better way of throwing an error than this!
303
-                            error_log('XML-RPC: ' . __METHOD__ . ': non numeric value received in DOUBLE: ' . $this->_xh['ac']);
303
+                            error_log('XML-RPC: '.__METHOD__.': non numeric value received in DOUBLE: '.$this->_xh['ac']);
304 304
                             $this->_xh['value'] = 'ERROR_NON_NUMERIC_FOUND';
305 305
                         } else {
306 306
                             // it's ok, add it on
307
-                            $this->_xh['value'] = (double)$this->_xh['ac'];
307
+                            $this->_xh['value'] = (double) $this->_xh['ac'];
308 308
                         }
309 309
                     } else {
310 310
                         // we have an I4/INT
311 311
                         // we must check that only 0123456789-<space> are characters here
312 312
                         if (!preg_match('/^[+-]?[0123456789 \t]+$/', $this->_xh['ac'])) {
313 313
                             /// @todo find a better way of throwing an error than this!
314
-                            error_log('XML-RPC: ' . __METHOD__ . ': non numeric value received in INT: ' . $this->_xh['ac']);
314
+                            error_log('XML-RPC: '.__METHOD__.': non numeric value received in INT: '.$this->_xh['ac']);
315 315
                             $this->_xh['value'] = 'ERROR_NON_NUMERIC_FOUND';
316 316
                         } else {
317 317
                             // it's ok, add it on
318
-                            $this->_xh['value'] = (int)$this->_xh['ac'];
318
+                            $this->_xh['value'] = (int) $this->_xh['ac'];
319 319
                         }
320 320
                     }
321 321
                     $this->_xh['lv'] = 3; // indicate we've found a value
322 322
                     break;
323 323
                 case 'NAME':
324
-                    $this->_xh['valuestack'][count($this->_xh['valuestack']) - 1]['name'] = $this->_xh['ac'];
324
+                    $this->_xh['valuestack'][count($this->_xh['valuestack'])-1]['name'] = $this->_xh['ac'];
325 325
                     break;
326 326
                 case 'MEMBER':
327 327
                     // add to array in the stack the last element built,
328 328
                     // unless no VALUE was found
329 329
                     if ($this->_xh['vt']) {
330 330
                         $vscount = count($this->_xh['valuestack']);
331
-                        $this->_xh['valuestack'][$vscount - 1]['values'][$this->_xh['valuestack'][$vscount - 1]['name']] = $this->_xh['value'];
331
+                        $this->_xh['valuestack'][$vscount-1]['values'][$this->_xh['valuestack'][$vscount-1]['name']] = $this->_xh['value'];
332 332
                     } else {
333
-                        error_log('XML-RPC: ' . __METHOD__ . ': missing VALUE inside STRUCT in received xml');
333
+                        error_log('XML-RPC: '.__METHOD__.': missing VALUE inside STRUCT in received xml');
334 334
                     }
335 335
                     break;
336 336
                 case 'DATA':
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
                         $this->_xh['params'][] = $this->_xh['value'];
354 354
                         $this->_xh['pt'][] = $this->_xh['vt'];
355 355
                     } else {
356
-                        error_log('XML-RPC: ' . __METHOD__ . ': missing VALUE inside PARAM in received xml');
356
+                        error_log('XML-RPC: '.__METHOD__.': missing VALUE inside PARAM in received xml');
357 357
                     }
358 358
                     break;
359 359
                 case 'METHODNAME':
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
     public function xmlrpc_cd($parser, $data)
396 396
     {
397 397
         // skip processing if xml fault already detected
398
-        if ($this->_xh['isf'] < 2) {
398
+        if ($this->_xh['isf']<2) {
399 399
             // "lookforvalue==3" means that we've found an entire value
400 400
             // and should discard any further character data
401 401
             if ($this->_xh['lv'] != 3) {
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
     public function xmlrpc_dh($parser, $data)
412 412
     {
413 413
         // skip processing if xml fault already detected
414
-        if ($this->_xh['isf'] < 2) {
414
+        if ($this->_xh['isf']<2) {
415 415
             if (substr($data, 0, 1) == '&' && substr($data, -1, 1) == ';') {
416 416
                 $this->_xh['ac'] .= $data;
417 417
             }
@@ -482,8 +482,8 @@  discard block
 block discarded – undo
482 482
         // Details:
483 483
         // SPACE:         (#x20 | #x9 | #xD | #xA)+ === [ \x9\xD\xA]+
484 484
         // EQ:            SPACE?=SPACE? === [ \x9\xD\xA]*=[ \x9\xD\xA]*
485
-        if (preg_match('/^<\?xml\s+version\s*=\s*' . "((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))" .
486
-            '\s+encoding\s*=\s*' . "((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/",
485
+        if (preg_match('/^<\?xml\s+version\s*=\s*'."((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))".
486
+            '\s+encoding\s*=\s*'."((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/",
487 487
             $xmlChunk, $matches)) {
488 488
             return strtoupper(substr($matches[2], 1, -1));
489 489
         }
@@ -501,7 +501,7 @@  discard block
 block discarded – undo
501 501
             // NB: mb_detect likes to call it ascii, xml parser likes to call it US_ASCII...
502 502
             // IANA also likes better US-ASCII, so go with it
503 503
             if ($enc == 'ASCII') {
504
-                $enc = 'US-' . $enc;
504
+                $enc = 'US-'.$enc;
505 505
             }
506 506
 
507 507
             return $enc;
@@ -536,8 +536,8 @@  discard block
 block discarded – undo
536 536
         // Details:
537 537
         // SPACE:         (#x20 | #x9 | #xD | #xA)+ === [ \x9\xD\xA]+
538 538
         // EQ:            SPACE?=SPACE? === [ \x9\xD\xA]*=[ \x9\xD\xA]*
539
-        if (preg_match('/^<\?xml\s+version\s*=\s*' . "((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))" .
540
-            '\s+encoding\s*=\s*' . "((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/",
539
+        if (preg_match('/^<\?xml\s+version\s*=\s*'."((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))".
540
+            '\s+encoding\s*=\s*'."((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/",
541 541
             $xmlChunk, $matches)) {
542 542
             return true;
543 543
         }
Please login to merge, or discard this patch.
src/Client.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -201,7 +201,6 @@
 block discarded – undo
201 201
      * This option can be very useful when debugging servers as it allows you to see exactly what the client sends and
202 202
      * the server returns.
203 203
      *
204
-     * @param integer $in values 0, 1 and 2 are supported (2 = echo sent msg too, before received response)
205 204
      */
206 205
     public function setDebug($level)
207 206
     {
Please login to merge, or discard this patch.
Spacing   +62 added lines, -62 removed lines patch added patch discarded remove patch
@@ -130,10 +130,10 @@  discard block
 block discarded – undo
130 130
             $server = $parts['host'];
131 131
             $path = isset($parts['path']) ? $parts['path'] : '';
132 132
             if (isset($parts['query'])) {
133
-                $path .= '?' . $parts['query'];
133
+                $path .= '?'.$parts['query'];
134 134
             }
135 135
             if (isset($parts['fragment'])) {
136
-                $path .= '#' . $parts['fragment'];
136
+                $path .= '#'.$parts['fragment'];
137 137
             }
138 138
             if (isset($parts['port'])) {
139 139
                 $port = $parts['port'];
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
             }
150 150
         }
151 151
         if ($path == '' || $path[0] != '/') {
152
-            $this->path = '/' . $path;
152
+            $this->path = '/'.$path;
153 153
         } else {
154 154
             $this->path = $path;
155 155
         }
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
         }*/
188 188
 
189 189
         // initialize user_agent string
190
-        $this->user_agent = PhpXmlRpc::$xmlrpcName . ' ' . PhpXmlRpc::$xmlrpcVersion;
190
+        $this->user_agent = PhpXmlRpc::$xmlrpcName.' '.PhpXmlRpc::$xmlrpcVersion;
191 191
     }
192 192
 
193 193
     /**
@@ -556,10 +556,10 @@  discard block
 block discarded – undo
556 556
      */
557 557
     protected function sendPayloadHTTP10($req, $server, $port, $timeout = 0, $username = '', $password = '',
558 558
         $authType = 1, $proxyHost = '', $proxyPort = 0, $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1,
559
-        $method='http')
559
+        $method = 'http')
560 560
     {
561 561
         if ($port == 0) {
562
-            $port = ( $method === "https" ) ? 443 : 80;
562
+            $port = ($method === "https") ? 443 : 80;
563 563
         }
564 564
 
565 565
         // Only create the payload if it was not created previously
@@ -590,15 +590,15 @@  discard block
 block discarded – undo
590 590
         // thanks to Grant Rauscher <[email protected]> for this
591 591
         $credentials = '';
592 592
         if ($username != '') {
593
-            $credentials = 'Authorization: Basic ' . base64_encode($username . ':' . $password) . "\r\n";
593
+            $credentials = 'Authorization: Basic '.base64_encode($username.':'.$password)."\r\n";
594 594
             if ($authType != 1) {
595
-                error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth is supported with HTTP 1.0');
595
+                error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth is supported with HTTP 1.0');
596 596
             }
597 597
         }
598 598
 
599 599
         $acceptedEncoding = '';
600 600
         if (is_array($this->accepted_compression) && count($this->accepted_compression)) {
601
-            $acceptedEncoding = 'Accept-Encoding: ' . implode(', ', $this->accepted_compression) . "\r\n";
601
+            $acceptedEncoding = 'Accept-Encoding: '.implode(', ', $this->accepted_compression)."\r\n";
602 602
         }
603 603
 
604 604
         $proxyCredentials = '';
@@ -609,18 +609,18 @@  discard block
 block discarded – undo
609 609
             $connectServer = $proxyHost;
610 610
             $connectPort = $proxyPort;
611 611
             $transport = "tcp";
612
-            $uri = 'http://' . $server . ':' . $port . $this->path;
612
+            $uri = 'http://'.$server.':'.$port.$this->path;
613 613
             if ($proxyUsername != '') {
614 614
                 if ($proxyAuthType != 1) {
615
-                    error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth to proxy is supported with HTTP 1.0');
615
+                    error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth to proxy is supported with HTTP 1.0');
616 616
                 }
617
-                $proxyCredentials = 'Proxy-Authorization: Basic ' . base64_encode($proxyUsername . ':' . $proxyPassword) . "\r\n";
617
+                $proxyCredentials = 'Proxy-Authorization: Basic '.base64_encode($proxyUsername.':'.$proxyPassword)."\r\n";
618 618
             }
619 619
         } else {
620 620
             $connectServer = $server;
621 621
             $connectPort = $port;
622 622
             /// @todo if supporting https, we should support all its current options as well: peer name verification etc...
623
-            $transport = ( $method === "https" ) ? "tls" : "tcp";
623
+            $transport = ($method === "https") ? "tls" : "tcp";
624 624
             $uri = $this->path;
625 625
         }
626 626
 
@@ -631,56 +631,56 @@  discard block
 block discarded – undo
631 631
             $version = '';
632 632
             foreach ($this->cookies as $name => $cookie) {
633 633
                 if ($cookie['version']) {
634
-                    $version = ' $Version="' . $cookie['version'] . '";';
635
-                    $cookieHeader .= ' ' . $name . '="' . $cookie['value'] . '";';
634
+                    $version = ' $Version="'.$cookie['version'].'";';
635
+                    $cookieHeader .= ' '.$name.'="'.$cookie['value'].'";';
636 636
                     if ($cookie['path']) {
637
-                        $cookieHeader .= ' $Path="' . $cookie['path'] . '";';
637
+                        $cookieHeader .= ' $Path="'.$cookie['path'].'";';
638 638
                     }
639 639
                     if ($cookie['domain']) {
640
-                        $cookieHeader .= ' $Domain="' . $cookie['domain'] . '";';
640
+                        $cookieHeader .= ' $Domain="'.$cookie['domain'].'";';
641 641
                     }
642 642
                     if ($cookie['port']) {
643
-                        $cookieHeader .= ' $Port="' . $cookie['port'] . '";';
643
+                        $cookieHeader .= ' $Port="'.$cookie['port'].'";';
644 644
                     }
645 645
                 } else {
646
-                    $cookieHeader .= ' ' . $name . '=' . $cookie['value'] . ";";
646
+                    $cookieHeader .= ' '.$name.'='.$cookie['value'].";";
647 647
                 }
648 648
             }
649
-            $cookieHeader = 'Cookie:' . $version . substr($cookieHeader, 0, -1) . "\r\n";
649
+            $cookieHeader = 'Cookie:'.$version.substr($cookieHeader, 0, -1)."\r\n";
650 650
         }
651 651
 
652 652
         // omit port if 80
653
-        $port = ($port == 80) ? '' : (':' . $port);
654
-
655
-        $op = 'POST ' . $uri . " HTTP/1.0\r\n" .
656
-            'User-Agent: ' . $this->user_agent . "\r\n" .
657
-            'Host: ' . $server . $port . "\r\n" .
658
-            $credentials .
659
-            $proxyCredentials .
660
-            $acceptedEncoding .
661
-            $encodingHdr .
662
-            'Accept-Charset: ' . implode(',', $this->accepted_charset_encodings) . "\r\n" .
663
-            $cookieHeader .
664
-            'Content-Type: ' . $req->content_type . "\r\nContent-Length: " .
665
-            strlen($payload) . "\r\n\r\n" .
653
+        $port = ($port == 80) ? '' : (':'.$port);
654
+
655
+        $op = 'POST '.$uri." HTTP/1.0\r\n".
656
+            'User-Agent: '.$this->user_agent."\r\n".
657
+            'Host: '.$server.$port."\r\n".
658
+            $credentials.
659
+            $proxyCredentials.
660
+            $acceptedEncoding.
661
+            $encodingHdr.
662
+            'Accept-Charset: '.implode(',', $this->accepted_charset_encodings)."\r\n".
663
+            $cookieHeader.
664
+            'Content-Type: '.$req->content_type."\r\nContent-Length: ".
665
+            strlen($payload)."\r\n\r\n".
666 666
             $payload;
667 667
 
668
-        if ($this->debug > 1) {
668
+        if ($this->debug>1) {
669 669
             Logger::instance()->debugMessage("---SENDING---\n$op\n---END---");
670 670
         }
671 671
 
672
-        if ($timeout > 0) {
672
+        if ($timeout>0) {
673 673
             $fp = @stream_socket_client("$transport://$connectServer:$connectPort", $this->errno, $this->errstr, $timeout);
674 674
         } else {
675 675
             $fp = @stream_socket_client("$transport://$connectServer:$connectPort", $this->errno, $this->errstr);
676 676
         }
677 677
         if ($fp) {
678
-            if ($timeout > 0) {
678
+            if ($timeout>0) {
679 679
                 stream_set_timeout($fp, $timeout);
680 680
             }
681 681
         } else {
682
-            $this->errstr = 'Connect error: ' . $this->errstr;
683
-            $r = new Response(0, PhpXmlRpc::$xmlrpcerr['http_error'], $this->errstr . ' (' . $this->errno . ')');
682
+            $this->errstr = 'Connect error: '.$this->errstr;
683
+            $r = new Response(0, PhpXmlRpc::$xmlrpcerr['http_error'], $this->errstr.' ('.$this->errno.')');
684 684
 
685 685
             return $r;
686 686
         }
@@ -732,7 +732,7 @@  discard block
 block discarded – undo
732 732
      * @param int $sslVersion
733 733
      * @return Response
734 734
      */
735
-    protected function sendPayloadHTTPS($req, $server, $port, $timeout = 0, $username = '',  $password = '',
735
+    protected function sendPayloadHTTPS($req, $server, $port, $timeout = 0, $username = '', $password = '',
736 736
         $authType = 1, $cert = '', $certPass = '', $caCert = '', $caCertDir = '', $proxyHost = '', $proxyPort = 0,
737 737
         $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $keepAlive = false, $key = '', $keyPass = '',
738 738
         $sslVersion = 0)
@@ -821,12 +821,12 @@  discard block
 block discarded – undo
821 821
             $encodingHdr = '';
822 822
         }
823 823
 
824
-        if ($this->debug > 1) {
824
+        if ($this->debug>1) {
825 825
             Logger::instance()->debugMessage("---SENDING---\n$payload\n---END---");
826 826
         }
827 827
 
828 828
         if (!$keepAlive || !$this->xmlrpc_curl_handle) {
829
-            $curl = curl_init($method . '://' . $server . ':' . $port . $this->path);
829
+            $curl = curl_init($method.'://'.$server.':'.$port.$this->path);
830 830
             if ($keepAlive) {
831 831
                 $this->xmlrpc_curl_handle = $curl;
832 832
             }
@@ -837,7 +837,7 @@  discard block
 block discarded – undo
837 837
         // results into variable
838 838
         curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
839 839
 
840
-        if ($this->debug > 1) {
840
+        if ($this->debug>1) {
841 841
             curl_setopt($curl, CURLOPT_VERBOSE, true);
842 842
             /// @todo allow callers to redirect curlopt_stderr to some stream which can be buffered
843 843
         }
@@ -863,7 +863,7 @@  discard block
 block discarded – undo
863 863
             }
864 864
         }
865 865
         // extra headers
866
-        $headers = array('Content-Type: ' . $req->content_type, 'Accept-Charset: ' . implode(',', $this->accepted_charset_encodings));
866
+        $headers = array('Content-Type: '.$req->content_type, 'Accept-Charset: '.implode(',', $this->accepted_charset_encodings));
867 867
         // if no keepalive is wanted, let the server know it in advance
868 868
         if (!$keepAlive) {
869 869
             $headers[] = 'Connection: close';
@@ -876,15 +876,15 @@  discard block
 block discarded – undo
876 876
         curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
877 877
         // timeout is borked
878 878
         if ($timeout) {
879
-            curl_setopt($curl, CURLOPT_TIMEOUT, $timeout == 1 ? 1 : $timeout - 1);
879
+            curl_setopt($curl, CURLOPT_TIMEOUT, $timeout == 1 ? 1 : $timeout-1);
880 880
         }
881 881
 
882 882
         if ($username && $password) {
883
-            curl_setopt($curl, CURLOPT_USERPWD, $username . ':' . $password);
883
+            curl_setopt($curl, CURLOPT_USERPWD, $username.':'.$password);
884 884
             if (defined('CURLOPT_HTTPAUTH')) {
885 885
                 curl_setopt($curl, CURLOPT_HTTPAUTH, $authType);
886 886
             } elseif ($authType != 1) {
887
-                error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth is supported by the current PHP/curl install');
887
+                error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth is supported by the current PHP/curl install');
888 888
             }
889 889
         }
890 890
 
@@ -925,13 +925,13 @@  discard block
 block discarded – undo
925 925
             if ($proxyPort == 0) {
926 926
                 $proxyPort = 8080; // NB: even for HTTPS, local connection is on port 8080
927 927
             }
928
-            curl_setopt($curl, CURLOPT_PROXY, $proxyHost . ':' . $proxyPort);
928
+            curl_setopt($curl, CURLOPT_PROXY, $proxyHost.':'.$proxyPort);
929 929
             if ($proxyUsername) {
930
-                curl_setopt($curl, CURLOPT_PROXYUSERPWD, $proxyUsername . ':' . $proxyPassword);
930
+                curl_setopt($curl, CURLOPT_PROXYUSERPWD, $proxyUsername.':'.$proxyPassword);
931 931
                 if (defined('CURLOPT_PROXYAUTH')) {
932 932
                     curl_setopt($curl, CURLOPT_PROXYAUTH, $proxyAuthType);
933 933
                 } elseif ($proxyAuthType != 1) {
934
-                    error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth to proxy is supported by the current PHP/curl install');
934
+                    error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth to proxy is supported by the current PHP/curl install');
935 935
                 }
936 936
             }
937 937
         }
@@ -942,7 +942,7 @@  discard block
 block discarded – undo
942 942
         if (count($this->cookies)) {
943 943
             $cookieHeader = '';
944 944
             foreach ($this->cookies as $name => $cookie) {
945
-                $cookieHeader .= $name . '=' . $cookie['value'] . '; ';
945
+                $cookieHeader .= $name.'='.$cookie['value'].'; ';
946 946
             }
947 947
             curl_setopt($curl, CURLOPT_COOKIE, substr($cookieHeader, 0, -2));
948 948
         }
@@ -953,13 +953,13 @@  discard block
 block discarded – undo
953 953
 
954 954
         $result = curl_exec($curl);
955 955
 
956
-        if ($this->debug > 1) {
956
+        if ($this->debug>1) {
957 957
             $message = "---CURL INFO---\n";
958 958
             foreach (curl_getinfo($curl) as $name => $val) {
959 959
                 if (is_array($val)) {
960 960
                     $val = implode("\n", $val);
961 961
                 }
962
-                $message .= $name . ': ' . $val . "\n";
962
+                $message .= $name.': '.$val."\n";
963 963
             }
964 964
             $message .= "---END---";
965 965
             Logger::instance()->debugMessage($message);
@@ -969,7 +969,7 @@  discard block
 block discarded – undo
969 969
             /// @todo we should use a better check here - what if we get back '' or '0'?
970 970
 
971 971
             $this->errstr = 'no response';
972
-            $resp = new Response(0, PhpXmlRpc::$xmlrpcerr['curl_fail'], PhpXmlRpc::$xmlrpcstr['curl_fail'] . ': ' . curl_error($curl));
972
+            $resp = new Response(0, PhpXmlRpc::$xmlrpcerr['curl_fail'], PhpXmlRpc::$xmlrpcstr['curl_fail'].': '.curl_error($curl));
973 973
             curl_close($curl);
974 974
             if ($keepAlive) {
975 975
                 $this->xmlrpc_curl_handle = null;
@@ -1079,7 +1079,7 @@  discard block
 block discarded – undo
1079 1079
             $call['methodName'] = new Value($req->method(), 'string');
1080 1080
             $numParams = $req->getNumParams();
1081 1081
             $params = array();
1082
-            for ($i = 0; $i < $numParams; $i++) {
1082
+            for ($i = 0; $i<$numParams; $i++) {
1083 1083
                 $params[$i] = $req->getParam($i);
1084 1084
             }
1085 1085
             $call['params'] = new Value($params, 'array');
@@ -1105,15 +1105,15 @@  discard block
 block discarded – undo
1105 1105
             /// @todo test this code branch...
1106 1106
             $rets = $result->value();
1107 1107
             if (!is_array($rets)) {
1108
-                return false;       // bad return type from system.multicall
1108
+                return false; // bad return type from system.multicall
1109 1109
             }
1110 1110
             $numRets = count($rets);
1111 1111
             if ($numRets != count($reqs)) {
1112
-                return false;       // wrong number of return values.
1112
+                return false; // wrong number of return values.
1113 1113
             }
1114 1114
 
1115 1115
             $response = array();
1116
-            for ($i = 0; $i < $numRets; $i++) {
1116
+            for ($i = 0; $i<$numRets; $i++) {
1117 1117
                 $val = $rets[$i];
1118 1118
                 if (!is_array($val)) {
1119 1119
                     return false;
@@ -1121,7 +1121,7 @@  discard block
 block discarded – undo
1121 1121
                 switch (count($val)) {
1122 1122
                     case 1:
1123 1123
                         if (!isset($val[0])) {
1124
-                            return false;       // Bad value
1124
+                            return false; // Bad value
1125 1125
                         }
1126 1126
                         // Normal return value
1127 1127
                         $response[$i] = new Response($val[0], 0, '', 'phpvals');
@@ -1149,19 +1149,19 @@  discard block
 block discarded – undo
1149 1149
 
1150 1150
             $rets = $result->value();
1151 1151
             if ($rets->kindOf() != 'array') {
1152
-                return false;       // bad return type from system.multicall
1152
+                return false; // bad return type from system.multicall
1153 1153
             }
1154 1154
             $numRets = $rets->count();
1155 1155
             if ($numRets != count($reqs)) {
1156
-                return false;       // wrong number of return values.
1156
+                return false; // wrong number of return values.
1157 1157
             }
1158 1158
 
1159 1159
             $response = array();
1160
-            foreach($rets as $val) {
1160
+            foreach ($rets as $val) {
1161 1161
                 switch ($val->kindOf()) {
1162 1162
                     case 'array':
1163 1163
                         if ($val->count() != 1) {
1164
-                            return false;       // Bad value
1164
+                            return false; // Bad value
1165 1165
                         }
1166 1166
                         // Normal return value
1167 1167
                         $response[] = new Response($val[0]);
Please login to merge, or discard this patch.