@@ -31,12 +31,12 @@ |
||
| 31 | 31 | const HTTP_SEE_OTHER = 303; |
| 32 | 32 | const HTTP_NOT_MODIFIED = 304; |
| 33 | 33 | const HTTP_USE_PROXY = 305; |
| 34 | - const HTTP_UNUSED= 306; |
|
| 34 | + const HTTP_UNUSED = 306; |
|
| 35 | 35 | const HTTP_TEMPORARY_REDIRECT = 307; |
| 36 | 36 | const HTTP_PERMANENT_REDIRECT = 308; |
| 37 | 37 | |
| 38 | 38 | const HTTP_BAD_REQUEST = 400; |
| 39 | - const HTTP_UNAUTHORIZED = 401; |
|
| 39 | + const HTTP_UNAUTHORIZED = 401; |
|
| 40 | 40 | const HTTP_PAYMENT_REQUIRED = 402; |
| 41 | 41 | const HTTP_FORBIDDEN = 403; |
| 42 | 42 | const HTTP_NOT_FOUND = 404; |
@@ -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 | |
@@ -85,7 +85,7 @@ |
||
| 85 | 85 | { |
| 86 | 86 | if (is_array($env['slim.files']) && $env->has('slim.files')) { |
| 87 | 87 | return $env['slim.files']; |
| 88 | - } elseif (! empty($_FILES)) { |
|
| 88 | + } elseif (!empty($_FILES)) { |
|
| 89 | 89 | return static::parseUploadedFiles($_FILES); |
| 90 | 90 | } |
| 91 | 91 | |