Passed
Push — master ( 13e6c8...d5e898 )
by Nikita
15:15
created
src/Gdaemon.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
174 174
             ]
175 175
         ]);
176 176
 
177
-        set_error_handler(function ($errSeverity, $err_msg) {
177
+        set_error_handler(function($errSeverity, $err_msg) {
178 178
             throw new GdaemonClientException($err_msg);
179 179
         });
180 180
 
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
             $sslContext
187 187
         );
188 188
 
189
-        if ( ! $this->_connection) {
189
+        if (!$this->_connection) {
190 190
             throw new GdaemonClientException('Could not connect to host: '
191 191
                 . $this->host
192 192
                 . ', port:' . $this->port
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
      */
205 205
     protected function getConnection()
206 206
     {
207
-        if (! is_resource($this->_connection)) {
207
+        if (!is_resource($this->_connection)) {
208 208
             $this->disconnect();
209 209
             $this->connect();
210 210
         }
Please login to merge, or discard this patch.