@@ -203,7 +203,7 @@ discard block |
||
| 203 | 203 | $this->headers->set('Host', $this->uri->getHost() . $port); |
| 204 | 204 | } |
| 205 | 205 | |
| 206 | - $this->registerMediaTypeParser('application/json', function ($input) { |
|
| 206 | + $this->registerMediaTypeParser('application/json', function($input) { |
|
| 207 | 207 | $result = json_decode($input, true); |
| 208 | 208 | if (!is_array($result)) { |
| 209 | 209 | return null; |
@@ -211,7 +211,7 @@ discard block |
||
| 211 | 211 | return $result; |
| 212 | 212 | }); |
| 213 | 213 | |
| 214 | - $this->registerMediaTypeParser('application/xml', function ($input) { |
|
| 214 | + $this->registerMediaTypeParser('application/xml', function($input) { |
|
| 215 | 215 | $backup = libxml_disable_entity_loader(true); |
| 216 | 216 | $backup_errors = libxml_use_internal_errors(true); |
| 217 | 217 | $result = simplexml_load_string($input); |
@@ -224,7 +224,7 @@ discard block |
||
| 224 | 224 | return $result; |
| 225 | 225 | }); |
| 226 | 226 | |
| 227 | - $this->registerMediaTypeParser('text/xml', function ($input) { |
|
| 227 | + $this->registerMediaTypeParser('text/xml', function($input) { |
|
| 228 | 228 | $backup = libxml_disable_entity_loader(true); |
| 229 | 229 | $backup_errors = libxml_use_internal_errors(true); |
| 230 | 230 | $result = simplexml_load_string($input); |
@@ -237,7 +237,7 @@ discard block |
||
| 237 | 237 | return $result; |
| 238 | 238 | }); |
| 239 | 239 | |
| 240 | - $this->registerMediaTypeParser('application/x-www-form-urlencoded', function ($input) { |
|
| 240 | + $this->registerMediaTypeParser('application/x-www-form-urlencoded', function($input) { |
|
| 241 | 241 | parse_str($input, $data); |
| 242 | 242 | return $data; |
| 243 | 243 | }); |
@@ -1035,7 +1035,7 @@ discard block |
||
| 1035 | 1035 | // If not, look for a media type with a structured syntax suffix (RFC 6839) |
| 1036 | 1036 | $parts = explode('+', $mediaType); |
| 1037 | 1037 | if (count($parts) >= 2) { |
| 1038 | - $mediaType = 'application/' . $parts[count($parts)-1]; |
|
| 1038 | + $mediaType = 'application/' . $parts[count($parts) - 1]; |
|
| 1039 | 1039 | } |
| 1040 | 1040 | } |
| 1041 | 1041 | |