Passed
Push — master ( f0e7b7...800486 )
by Darío
03:11
created
src/Network/Socket/AbstractSocket.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
         }
122 122
 
123 123
         $this->socket = $socket;
124
-	}
124
+    }
125 125
 
126 126
     /**
127 127
      * Binds the socket
@@ -145,8 +145,8 @@  discard block
 block discarded – undo
145 145
      *
146 146
      * @return null
147 147
      */
148
-	public function close()
149
-	{
148
+    public function close()
149
+    {
150 150
         return socket_close($this->socket);
151
-	}
151
+    }
152 152
 }
153 153
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,8 +108,8 @@
 block discarded – undo
108 108
     {
109 109
         foreach ($options as $option => $value)
110 110
         {
111
-            if (property_exists(__CLASS__, strtolower($option)) && method_exists($this, 'set'.$option))
112
-            $this->{'set'.$option}($value);
111
+            if (property_exists(__CLASS__, strtolower($option)) && method_exists($this, 'set' . $option))
112
+            $this->{'set' . $option}($value);
113 113
         }
114 114
 
115 115
         if (!($socket = @socket_create(AF_INET, SOCK_STREAM, SOL_TCP)))
Please login to merge, or discard this patch.