Passed
Pull Request — master (#129)
by
unknown
05:20 queued 01:55
created
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.
src/Header/Part/DatePart.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
 
42 42
         // @see https://bugs.php.net/bug.php?id=42486
43 43
         if ($date === false && preg_match('#UT$#', $dateToken)) {
44
-            $date = $this->parseDateToken($dateToken . 'C');
44
+            $date = $this->parseDateToken($dateToken.'C');
45 45
         }
46 46
         // Missing "+" in timezone definition. eg: Thu, 13 Mar 2014 15:02:47 0000 (not RFC compliant)
47 47
         if (preg_match('# [0-9]{4}$#', $dateToken)) {
Please login to merge, or discard this patch.