Passed
Push — master ( 41a4a0...bd124d )
by Zaahid
06:26
created
src/QuotedPrintableStream.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
         $len = strlen($str);
93 93
         if ($len > 0 && !preg_match('/^[0-9a-f]{2}$|^[\r\n].$/is', $str) && $this->stream->isSeekable()) {
94 94
             $this->stream->seek(-$len, SEEK_CUR);
95
-            return '3D';    // '=' character
95
+            return '3D'; // '=' character
96 96
         }
97 97
         return $str;
98 98
     }
Please login to merge, or discard this patch.
src/Util/CharsetConverter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -278,9 +278,9 @@
 block discarded – undo
278 278
     
279 279
     // maps
280 280
     protected $mappedRequestedCharsets = [
281
-        'UTF-8' => [ true, 'UTF-8' ],
282
-        'US-ASCII' => [ true, 'US-ASCII' ],
283
-        'ISO-8859-1' => [ true, 'ISO-8859-1' ],
281
+        'UTF-8' => [true, 'UTF-8'],
282
+        'US-ASCII' => [true, 'US-ASCII'],
283
+        'ISO-8859-1' => [true, 'ISO-8859-1'],
284 284
     ];
285 285
     
286 286
     /**
Please login to merge, or discard this patch.