Completed
Push — master ( 39b433...da1076 )
by Alex
03:15
created
Category
Client.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
     {
132 132
         $data = '';
133 133
 
134
-        while (! feof($this->connection)) {
134
+        while (!feof($this->connection)) {
135 135
             $buffer = chop(fgets($this->connection, 1024));
136 136
 
137 137
             if (strpos($buffer, '-ERR') === 0) {
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
     {
202 202
         $subject = substr($line, 0, strlen($line) - 2);
203 203
 
204
-        for ($j = $i + 1; $j < count($headers); $j ++) {
204
+        for ($j = $i + 1; $j < count($headers); $j++) {
205 205
             if (substr($headers[$j], 0, 1) == ' ') {
206 206
                 $subject .= str_replace([
207 207
                     ' ' . $type,
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
     {
252 252
         $count = $this->getCount();
253 253
 
254
-        for ($i = 1; $i <= $count; $i ++) {
254
+        for ($i = 1; $i <= $count; $i++) {
255 255
             $mailSubject = $this->getMessageSubject($i);
256 256
 
257 257
             if ($subject == $mailSubject) {
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
     {
273 273
         $count = $this->getCount();
274 274
 
275
-        for ($i = 1; $i <= $count; $i ++) {
275
+        for ($i = 1; $i <= $count; $i++) {
276 276
             $mailSubject = $this->getMessageSubject($i);
277 277
 
278 278
             if ($subject == $mailSubject) {
Please login to merge, or discard this patch.