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 d62d048 commit ff16530Copy full SHA for ff16530
pkg/stomp/StompConnectionFactory.php
@@ -76,8 +76,8 @@ private function establishConnection()
76
if (false == $this->stomp) {
77
$config = $this->config;
78
79
- $scheme = ($config['ssl_on'] === true) ? 'ssl' : 'tcp';
80
- $uri = $scheme . '://' . $config['host'] . ':' . $config['port'];
+ $scheme = (true === $config['ssl_on']) ? 'ssl' : 'tcp';
+ $uri = $scheme.'://'.$config['host'].':'.$config['port'];
81
$connection = new Connection($uri, $config['connection_timeout']);
82
83
$this->stomp = new BufferedStompClient($connection, $config['buffer_size']);
0 commit comments