@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | } |
145 | 145 | |
146 | 146 | foreach ($this->configurable as $setting) { |
147 | - if ( ! isset($config[$setting])) { |
|
147 | + if (!isset($config[$setting])) { |
|
148 | 148 | continue; |
149 | 149 | } |
150 | 150 | |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | ] |
175 | 175 | ]); |
176 | 176 | |
177 | - set_error_handler(function ($errSeverity, $errMsg) { |
|
177 | + set_error_handler(function($errSeverity, $errMsg) { |
|
178 | 178 | restore_error_handler(); |
179 | 179 | throw new GdaemonClientException($errMsg); |
180 | 180 | }); |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | $sslContext |
188 | 188 | ); |
189 | 189 | |
190 | - if ( ! $this->_connection) { |
|
190 | + if (!$this->_connection) { |
|
191 | 191 | restore_error_handler(); |
192 | 192 | throw new GdaemonClientException('Could not connect to host: ' |
193 | 193 | . $this->host |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | */ |
209 | 209 | protected function getConnection() |
210 | 210 | { |
211 | - if (! is_resource($this->_connection)) { |
|
211 | + if (!is_resource($this->_connection)) { |
|
212 | 212 | $this->disconnect(); |
213 | 213 | $this->connect(); |
214 | 214 | } |