@@ -44,7 +44,7 @@ |
||
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); |
@@ -39,8 +39,8 @@ discard block |
||
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 |
||
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) |
@@ -255,9 +255,9 @@ |
||
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 |