Completed
Push — master ( da1076...014d21 )
by Alex
02:01
created
Client.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
     {
135 135
         $data = '';
136 136
 
137
-        while (! feof($this->connection)) {
137
+        while (!feof($this->connection)) {
138 138
             $buffer = chop(fgets($this->connection, 1024));
139 139
 
140 140
             if (strpos($buffer, '-ERR') === 0) {
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
         $subject = substr($line, 0, strlen($line) - 2);
206 206
 
207 207
         $count = count($headers);
208
-        for ($j = $i + 1; $j < $count; $j ++) {
208
+        for ($j = $i + 1; $j < $count; $j++) {
209 209
             if (substr($headers[$j], 0, 1) == ' ') {
210 210
                 $subject .= str_replace([
211 211
                     ' ' . $type,
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
     {
260 260
         $count = $this->getCount();
261 261
 
262
-        for ($i = 1; $i <= $count; $i ++) {
262
+        for ($i = 1; $i <= $count; $i++) {
263 263
             $mailSubject = $this->getMessageSubject($i);
264 264
 
265 265
             if ($subject == $mailSubject) {
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
     {
281 281
         $count = $this->getCount();
282 282
 
283
-        for ($i = 1; $i <= $count; $i ++) {
283
+        for ($i = 1; $i <= $count; $i++) {
284 284
             $mailSubject = $this->getMessageSubject($i);
285 285
 
286 286
             if ($subject == $mailSubject) {
Please login to merge, or discard this patch.