We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 786c6e4 commit 07f77f6Copy full SHA for 07f77f6
src/Bridge/ContextInjector.php
@@ -119,16 +119,14 @@ public function onRequest(GetResponseEvent $event)
119
}
120
121
$this->spans->push(
122
- [
123
- $this->tracer
124
- ->start(
125
- $this->getOperationName($request),
126
127
- new HttpMethodTag($request->getMethod()),
128
- new HttpUriTag($request->getRequestUri()),
129
- ]
130
- )
131
+ $this->tracer
+ ->start(
+ $this->getOperationName($request),
+ [
+ new HttpMethodTag($request->getMethod()),
+ new HttpUriTag($request->getRequestUri()),
+ ]
+ )
132
);
133
134
return $this;
0 commit comments