Completed
Push — master ( 39dd26...9acb9c )
by Maik
02:56
created
src/Generics/Socket/Socket.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
             $code = socket_last_error();
157 157
             if ($code != 0) {
158 158
                 if ($code != 10053) {
159
-                	throw new SocketException(socket_strerror($code), array(), $code);
159
+                    throw new SocketException(socket_strerror($code), array(), $code);
160 160
                 } else {
161 161
                     $this->handle = null;
162 162
                 }
@@ -210,6 +210,6 @@  discard block
 block discarded – undo
210 210
      */
211 211
     public function isOpen()
212 212
     {
213
-    	return is_resource($this->handle);
213
+        return is_resource($this->handle);
214 214
     }
215 215
 }
Please login to merge, or discard this patch.