Passed
Pull Request — master (#8)
by
unknown
02:41
created
src/Middleware/HttpTracingMiddleware.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
         $traceStateHeader = $this->traceIdHeaderRetriever->retrieve($headers, TraceContextPropagator::TRACESTATE);
48 48
 
49 49
         $this->spanCreator->create(
50
-            Caller::call(Config::get('jaravel.http.span_name'), [$request]),
50
+            Caller::call(Config::get('jaravel.http.span_name'), [ $request ]),
51 51
             $traceIdHeader,
52 52
             $traceStateHeader
53 53
         )->activate();
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
             'type' => 'http',
71 71
         ]);
72 72
 
73
-        SpanTagHelper::setTags($span, Caller::call($callableConfig, [$request, $response]));
73
+        SpanTagHelper::setTags($span, Caller::call($callableConfig, [ $request, $response ]));
74 74
 
75 75
         $span->end();
76 76
         $scope->detach();
Please login to merge, or discard this patch.
src/Services/Job/JobInjectionMaker.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
             return $command;
25 25
         }
26 26
 
27
-        $command->{$tracingContextField} = [];
27
+        $command->{$tracingContextField} = [ ];
28 28
         $this->contextPropagator->inject($command->{$tracingContextField});
29 29
 
30 30
         return $command;
Please login to merge, or discard this patch.