@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | $boundary = $part->getHeaderParameter('Content-Type', 'boundary'); |
| 137 | 137 | if ($boundary === null) { |
| 138 | 138 | return array_map( |
| 139 | - function ($child) { |
|
| 139 | + function($child) { |
|
| 140 | 140 | return $child->getStream(); |
| 141 | 141 | }, |
| 142 | 142 | $part->getChildParts() |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | $content = Psr7\Utils::streamFor(); |
| 167 | 167 | $this->writePartContentTo($content); |
| 168 | 168 | $content->rewind(); |
| 169 | - $streams = [ $this->streamFactory->newHeaderStream($this->part), $content ]; |
|
| 169 | + $streams = [$this->streamFactory->newHeaderStream($this->part), $content]; |
|
| 170 | 170 | |
| 171 | 171 | /** |
| 172 | 172 | * @var ParentHeaderPart |