@@ -95,7 +95,7 @@ discard block |
||
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 |
||
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 | /** |