@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | * Method will use the input Result to replace the placeholders in $this->jsonOutput or return an array with |
| 111 | 111 | * the default values. |
| 112 | 112 | * |
| 113 | - * @param $result \phpbu\App\Result |
|
| 113 | + * @param Result $result \phpbu\App\Result |
|
| 114 | 114 | * @return array: will return array placeholders are replaced with correct data |
| 115 | 115 | */ |
| 116 | 116 | public function getOutput($result) : array |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | * Simple toXml function |
| 195 | 195 | * |
| 196 | 196 | * @author Francis Lewis: https://stackoverflow.com/a/19987539 |
| 197 | - * @param SimpleXMLElement $object |
|
| 197 | + * @param \SimpleXMLElement $object |
|
| 198 | 198 | * @param array $data |
| 199 | 199 | */ |
| 200 | 200 | private function toXml(\SimpleXMLElement $object, array $data) |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | // check if json_decode succeeded, otherwise return default parameters |
| 131 | 131 | if ($outputArray) { |
| 132 | 132 | // only value where valuestring equals vars key is supported. |
| 133 | - array_walk_recursive($outputArray, function (&$value, &$key) use ($vars) { |
|
| 133 | + array_walk_recursive($outputArray, function(&$value, &$key) use ($vars) { |
|
| 134 | 134 | if (strpos($value, '__') === 0) { |
| 135 | 135 | $value = $vars[$value]; |
| 136 | 136 | } |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | $ch = curl_init(); |
| 154 | 154 | $uri = $this->options['uri']; |
| 155 | 155 | if (strtoupper($this->options['method']) == 'GET') { |
| 156 | - $uri .= '?' . http_build_query($output); |
|
| 156 | + $uri .= '?'.http_build_query($output); |
|
| 157 | 157 | } |
| 158 | 158 | curl_setopt($ch, CURLOPT_URL, $uri); |
| 159 | 159 | if (strtoupper($this->options['method']) == 'POST') { |
@@ -162,8 +162,8 @@ discard block |
||
| 162 | 162 | curl_setopt($ch, CURLOPT_POSTFIELDS, $output); |
| 163 | 163 | } |
| 164 | 164 | curl_setopt($ch, CURLOPT_HTTPHEADER, [ |
| 165 | - 'Content-Type: ' . $this->options['content-type'], |
|
| 166 | - 'Accept: ' . $this->options['content-type'] |
|
| 165 | + 'Content-Type: '.$this->options['content-type'], |
|
| 166 | + 'Accept: '.$this->options['content-type'] |
|
| 167 | 167 | ]); |
| 168 | 168 | curl_exec($ch); |
| 169 | 169 | curl_close($ch); |
@@ -205,7 +205,7 @@ discard block |
||
| 205 | 205 | $this->toXml($new_object, $value); |
| 206 | 206 | } else { |
| 207 | 207 | // if the key is an integer, it needs text with it to actually work. |
| 208 | - if ($key == (int)$key) { |
|
| 208 | + if ($key == (int) $key) { |
|
| 209 | 209 | $key = "key_$key"; |
| 210 | 210 | } |
| 211 | 211 | |