Completed
Push — master ( 97422f...eaf181 )
by Janusz
10:47 queued 03:45
created
src/Proxy/Buzz/Common.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,7 @@
 block discarded – undo
23 23
             if($request->getHeader('Content-Type') == 'application/json')
24 24
             {
25 25
                 $payload = json_decode($request->getContent(), true) ?: [];
26
-            }
27
-            else {
26
+            } else {
28 27
                 parse_str($request->getContent(), $payload);
29 28
             }
30 29
 
Please login to merge, or discard this patch.
src/Twig/CurlFormatter.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@
 block discarded – undo
53 53
             }
54 54
 
55 55
             return sprintf(" --data '%s'", http_build_query($singleCall['params']));
56
-        }
57
-        else
56
+        } else
58 57
         {
59 58
             return '';
60 59
         }
Please login to merge, or discard this patch.
src/DataCollector/ApiDataCollector.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,8 +58,9 @@
 block discarded – undo
58 58
     public function getTime()
59 59
     {
60 60
         $total = 0;
61
-        foreach($this->data['calls'] as $call)
62
-            $total += $call['time'];
61
+        foreach($this->data['calls'] as $call) {
62
+                    $total += $call['time'];
63
+        }
63 64
 
64 65
         return $total;
65 66
     }
Please login to merge, or discard this patch.