Passed
Push — master ( 6386e9...e62bc8 )
by Adam
51s queued 13s
created
src/IPub/MQTTClient/Client/Configuration.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  * @date           14.03.17
13 13
  */
14 14
 
15
-declare(strict_types = 1);
15
+declare(strict_types=1);
16 16
 
17 17
 namespace IPub\MQTTClient\Client;
18 18
 
@@ -115,10 +115,10 @@  discard block
 block discarded – undo
115 115
 	public function getUri() : string
116 116
 	{
117 117
 		if ($this->httpHost !== NULL) {
118
-			return $this->httpHost . ':' . $this->port;
118
+			return $this->httpHost.':'.$this->port;
119 119
 
120 120
 		} elseif ($this->address !== NULL) {
121
-			return $this->address . ':' . $this->port;
121
+			return $this->address.':'.$this->port;
122 122
 		}
123 123
 
124 124
 		throw new Exceptions\InvalidStateException('Broker http host or address is not specified');
Please login to merge, or discard this patch.