Test Failed
Push — 2.0 ( 91a8b2...00e111 )
by Zaahid
08:02 queued 04:36
created
src/MailMimeParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
     {
136 136
         $stream = Utils::streamFor(
137 137
             $resource,
138
-            [ 'metadata' => [ 'mmp-detached-stream' => ($attached !== true) ] ]
138
+            ['metadata' => ['mmp-detached-stream' => ($attached !== true)]]
139 139
         );
140 140
         if (!$stream->isSeekable()) {
141 141
             $stream = new CachingStream($stream);
Please login to merge, or discard this patch.
src/Stream/MessagePartStream.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
         $boundary = $part->getHeaderParameter(HeaderConsts::CONTENT_TYPE, 'boundary');
159 159
         if ($boundary === null) {
160 160
             return array_map(
161
-                function ($child) {
161
+                function($child) {
162 162
                     return $child->getStream();
163 163
                 },
164 164
                 $part->getChildParts()
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
         $content = Psr7\Utils::streamFor();
189 189
         $this->writePartContentTo($content);
190 190
         $content->rewind();
191
-        $streams = [ $this->streamFactory->newHeaderStream($this->part), $content ];
191
+        $streams = [$this->streamFactory->newHeaderStream($this->part), $content];
192 192
 
193 193
         if ($this->part instanceof IMimePart && $this->part->getChildCount() > 0) {
194 194
             $streams = array_merge($streams, $this->getBoundaryAndChildStreams($this->part));
Please login to merge, or discard this patch.