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 a668bcd commit bcd4c4aCopy full SHA for bcd4c4a
instrumentation/symfony/OtelSdkBundle/Util/ExporterDsn.php
@@ -84,13 +84,13 @@ public function getEndpoint(): string
84
);
85
$dsn .= $this->getUser() !== null && $this->getPassword() !== null ? sprintf(
86
'%s:%s@',
87
- (string)$this->getUser(),
88
- (string)$this->getPassword()
+ (string) $this->getUser(),
+ (string) $this->getPassword()
89
) : '';
90
$dsn .= $this->getHost();
91
$dsn .= $this->getPort() !== null ? sprintf(
92
':%s',
93
- (string)$this->getPort(),
+ (string) $this->getPort(),
94
95
$dsn .= $this->getPath() ?? '';
96
0 commit comments