Test Failed
Push — 2.0 ( 0b4092...91a8b2 )
by Zaahid
04:50
created
src/Parser/Proxy/ParserPartProxy.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
         return $this->partBuilder->getHeaderContainer();
94 94
     }
95 95
 
96
-     public function getStream()
96
+        public function getStream()
97 97
     {
98 98
         return $this->partBuilder->getStream();
99 99
     }
Please login to merge, or discard this patch.
src/Parser/ParserManager.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 
23 23
     public function __construct(MimeParser $mimeParser, NonMimeParser $nonMimeParser)
24 24
     {
25
-        $this->parsers = [ $mimeParser, $nonMimeParser ];
25
+        $this->parsers = [$mimeParser, $nonMimeParser];
26 26
         $mimeParser->setParserManager($this);
27 27
         $nonMimeParser->setParserManager($this);
28 28
     }
@@ -54,8 +54,7 @@  discard block
 block discarded – undo
54 54
         foreach ($this->parsers as $parser) {
55 55
             if ($parser->canParse($partBuilder)) {
56 56
                 $factory = ($partBuilder->getParent() === null) ? 
57
-                    $parser->getParserMessageProxyFactory() :
58
-                    $parser->getParserPartProxyFactory();
57
+                    $parser->getParserMessageProxyFactory() : $parser->getParserPartProxyFactory();
59 58
                 return $factory->newInstance($partBuilder, $parser);
60 59
             }
61 60
         }
Please login to merge, or discard this patch.