Passed
Push — master ( 6a6a0c...abde4f )
by Thomas Mauro
02:59
created
src/functions/parse_callback_params.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,11 +19,11 @@
 block discarded – undo
19 19
     if ('POST' === $method) {
20 20
         \parse_str((string) $serverRequest->getBody(), $params);
21 21
 
22
-        if (! \is_array($params)) {
22
+        if (!\is_array($params)) {
23 23
             throw new RuntimeException('Invalid parsed body');
24 24
         }
25 25
 
26
-        return \array_map(static function ($value) {
26
+        return \array_map(static function($value) {
27 27
             return \json_decode($value, true);
28 28
         }, $params);
29 29
     }
Please login to merge, or discard this patch.