Skip to content

Commit bcd4c4a

Browse files
committed
Fix CS
1 parent a668bcd commit bcd4c4a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

instrumentation/symfony/OtelSdkBundle/Util/ExporterDsn.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,13 @@ public function getEndpoint(): string
8484
);
8585
$dsn .= $this->getUser() !== null && $this->getPassword() !== null ? sprintf(
8686
'%s:%s@',
87-
(string)$this->getUser(),
88-
(string)$this->getPassword()
87+
(string) $this->getUser(),
88+
(string) $this->getPassword()
8989
) : '';
9090
$dsn .= $this->getHost();
9191
$dsn .= $this->getPort() !== null ? sprintf(
9292
':%s',
93-
(string)$this->getPort(),
93+
(string) $this->getPort(),
9494
) : '';
9595
$dsn .= $this->getPath() ?? '';
9696

0 commit comments

Comments
 (0)