Passed
Push — master ( de6f16...55a312 )
by Zoilo
02:48
created
src/Pool/Memory/MemoryTransactionPool.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     {
25 25
         return array_filter(
26 26
             $this->items,
27
-            static function (Transaction $item) {
27
+            static function(Transaction $item) {
28 28
                 return $item->isFinished();
29 29
             }
30 30
         );
Please login to merge, or discard this patch.
src/Pool/Memory/MemorySpanPool.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     {
25 25
         return array_filter(
26 26
             $this->items,
27
-            static function (Span $item) {
27
+            static function(Span $item) {
28 28
                 return $item->isFinished();
29 29
             }
30 30
         );
Please login to merge, or discard this patch.
src/Reporter/ApmServerCurlReporter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
     private function getHttpHeaders(array $headers)
93 93
     {
94 94
         return array_map(
95
-            static function ($key, $value) {
95
+            static function($key, $value) {
96 96
                 return sprintf(
97 97
                     '%s: %s',
98 98
                     $key,
Please login to merge, or discard this patch.
src/Helper/NDJson.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         return array_reduce(
22 22
             $events,
23
-            static function ($carry, $item) {
23
+            static function($carry, $item) {
24 24
                 $carry .= json_encode($item) . PHP_EOL;
25 25
 
26 26
                 return $carry;
Please login to merge, or discard this patch.
src/Processor/MetricSetProcessor/ByParentIdFinder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
         return array_values(
19 19
             array_filter(
20 20
                 $events,
21
-                static function (TraceableEvent $event) use ($parentId) {
21
+                static function(TraceableEvent $event) use ($parentId) {
22 22
                     return $event->parentId() === $parentId;
23 23
                 }
24 24
             )
Please login to merge, or discard this patch.
src/Processor/MetricSetProcessor/MeasurableEventsFinder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
         return array_values(
19 19
             array_filter(
20 20
                 $events,
21
-                static function ($event) {
21
+                static function($event) {
22 22
                     return true === $event instanceof TransactionEvent || true === $event instanceof SpanEvent;
23 23
                 }
24 24
             )
Please login to merge, or discard this patch.