Passed
Push — master ( f5049f...9ff338 )
by Zaahid
03:17
created
src/Header/HeaderContainer.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
         $s = $this->headerFactory->getNormalizedHeaderName($name);
90 90
         if (isset($this->headerMap[$s])) {
91 91
             $self = $this;
92
-            $filtered = array_filter($this->headerMap[$s], function ($h) use ($name, $self) {
92
+            $filtered = array_filter($this->headerMap[$s], function($h) use ($name, $self) {
93 93
                 return (strcasecmp($self->headers[$h][0], $name) === 0);
94 94
             });
95 95
             return (!empty($filtered)) ? $filtered : $this->headerMap[$s];
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
         $a = $this->getAllWithOriginalHeaderNameIfSet($name);
129 129
         if (!empty($a)) {
130 130
             $self = $this;
131
-            return array_map(function ($index) use ($self) {
131
+            return array_map(function($index) use ($self) {
132 132
                 return $self->getByIndex($index);
133 133
             }, $a);
134 134
         }
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
     public function add($name, $value)
208 208
     {
209 209
         $s = $this->headerFactory->getNormalizedHeaderName($name);
210
-        $this->headers[$this->nextIndex] = [ $name, $value ];
210
+        $this->headers[$this->nextIndex] = [$name, $value];
211 211
         $this->headerObjects[$this->nextIndex] = null;
212 212
         if (!isset($this->headerMap[$s])) {
213 213
             $this->headerMap[$s] = [];
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
             return;
236 236
         }
237 237
         $i = $this->headerMap[$s][$offset];
238
-        $this->headers[$i] = [ $name, $value ];
238
+        $this->headers[$i] = [$name, $value];
239 239
         $this->headerObjects[$i] = null;
240 240
     }
241 241
 
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
      */
248 248
     public function getHeaderObjects()
249 249
     {
250
-        return array_filter(array_map([ $this, 'getByIndex' ], array_keys($this->headers)));
250
+        return array_filter(array_map([$this, 'getByIndex'], array_keys($this->headers)));
251 251
     }
252 252
 
253 253
     /**
Please login to merge, or discard this patch.
src/Header/MimeEncodedHeader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     protected function setParseHeaderValue(AbstractConsumer $consumer)
55 55
     {
56 56
         $value = $this->rawValue;
57
-        $matchp = '~^(\s*' . MimeLiteralPart::MIME_PART_PATTERN . '\s*)+$~';
57
+        $matchp = '~^(\s*'.MimeLiteralPart::MIME_PART_PATTERN.'\s*)+$~';
58 58
         if (preg_match($matchp, $value)) {
59 59
             $p = $this->mimeLiteralPartFactory->newInstance($value);
60 60
             $value = $p->getValue();
Please login to merge, or discard this patch.