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 5241437 commit 786c6e4Copy full SHA for 786c6e4
src/Bridge/ContextInjector.php
@@ -119,14 +119,16 @@ public function onRequest(GetResponseEvent $event)
119
}
120
121
$this->spans->push(
122
- $this->tracer
123
- ->start(
124
- $this->getOperationName($request),
125
- [
126
- new HttpMethodTag($request->getMethod()),
127
- new HttpUriTag($request->getRequestUri()),
128
- ]
129
- )
+ [
+ $this->tracer
+ ->start(
+ $this->getOperationName($request),
+ new HttpMethodTag($request->getMethod()),
+ new HttpUriTag($request->getRequestUri()),
+ ]
130
+ )
131
132
);
133
134
return $this;
0 commit comments