Skip to content

Commit 7e65d60

Browse files
committed
coding style
1 parent af38f34 commit 7e65d60

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Mail/MimePart.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ class MimePart
3131

3232
/** @internal */
3333
public const EOL = "\r\n";
34+
3435
public const LINE_LENGTH = 76;
3536

3637
/** @var array */
@@ -183,7 +184,7 @@ public function getEncoding(): string
183184
/**
184185
* Adds or creates new multipart.
185186
*/
186-
public function addPart(MimePart $part = null): self
187+
public function addPart(self $part = null): self
187188
{
188189
return $this->parts[] = $part === null ? new self : $part;
189190
}

0 commit comments

Comments
 (0)