Skip to content

Commit f034b8b

Browse files
bitgandtterOskarStark
authored andcommitted
chore: drop extra - on CHANGELOG.md
fix: drop sensitive information from toString method on transport
1 parent d47c4dc commit f034b8b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Component/Notifier/Bridge/Pusher/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ CHANGELOG
22
=========
33

44
6.3
5-
-----
5+
----
66

77
* Add the bridge

src/Symfony/Component/Notifier/Bridge/Pusher/PusherTransport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function __toString(): string
4141
$settings = $this->pusherClient->getSettings();
4242
preg_match('/api-([\w]+)\.pusher\.com$/m', $settings['host'], $server);
4343

44-
return sprintf('pusher://%s:%s@%s?server=%s', $settings['auth_key'], $settings['secret'], $settings['app_id'], $server[1]);
44+
return sprintf('pusher://%s?server=%s', $settings['app_id'], $server[1]);
4545
}
4646

4747
public function supports(MessageInterface $message): bool

0 commit comments

Comments
 (0)