Passed
Pull Request — master (#213)
by
unknown
03:14
created
src/Header/MimeEncodedHeader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
     protected function setParseHeaderValue(AbstractConsumer $consumer)
45 45
     {
46 46
         $value = $this->rawValue;
47
-        $matchp = '~' . MimeLiteralPart::MIME_PART_PATTERN . '~';
47
+        $matchp = '~'.MimeLiteralPart::MIME_PART_PATTERN.'~';
48 48
         $value = \preg_replace_callback($matchp, function($matches) {
49 49
             return $this->mimeLiteralPartFactory->newInstance($matches[0]);
50 50
         }, $value);
Please login to merge, or discard this patch.
src/Parser/Part/UUEncodedPartHeaderContainer.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
 
40 40
     /**
41 41
      * Sets the unix file mode for the uuencoded 'begin' line.
42
-	 *
43
-	 * @return static
42
+     *
43
+     * @return static
44 44
      */
45 45
     public function setUnixFileMode(int $mode)
46 46
     {
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
     }
61 61
 
62 62
     /**
63
-	 * Sets the filename included in the uuencoded 'begin' line.
64
-	 *
63
+     * Sets the filename included in the uuencoded 'begin' line.
64
+     *
65 65
      * @return static
66 66
      */
67 67
     public function setFilename(string $filename)
Please login to merge, or discard this patch.
src/Message.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -255,9 +255,9 @@
 block discarded – undo
255 255
         return \count($this->getAllAttachmentParts());
256 256
     }
257 257
 
258
-	/**
259
-	 * @return static
260
-	 */
258
+    /**
259
+     * @return static
260
+     */
261 261
     public function addAttachmentPart($resource, string $mimeType, ?string $filename = null, string $disposition = 'attachment', string $encoding = 'base64')
262 262
     {
263 263
         $this->multipartHelper
Please login to merge, or discard this patch.