Completed
Push — master ( 572594...b81e04 )
by Zaahid
01:10
created
src/MessageParser.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
                 $this->addRawHeaderToPart($header, $part);
96 96
                 $header = '';
97 97
             } else {
98
-                $line = ' ' . ltrim($line);
98
+                $line = ' '.ltrim($line);
99 99
             }
100 100
             $header .= rtrim($line, "\r\n");
101 101
         } while (!empty($header));
@@ -175,8 +175,7 @@  discard block
 block discarded – undo
175 175
     private function getParentBoundary($curBoundary, MimePart $parent = null)
176 176
     {
177 177
         return $parent !== null ?
178
-            $parent->getHeaderParameter('Content-Type', 'boundary') :
179
-            $curBoundary;
178
+            $parent->getHeaderParameter('Content-Type', 'boundary') : $curBoundary;
180 179
     }
181 180
     
182 181
     /**
Please login to merge, or discard this patch.