Skip to content

Commit b4a465b

Browse files
committed
removed PHP7 typehints
1 parent 2d6bec7 commit b4a465b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

MailLibrary/MimePart.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,31 +41,31 @@ public function __construct(IDriver $driver, $mailId, $partId, $mimeType, $name,
4141
/**
4242
* @return string
4343
*/
44-
public function getPartId(): string
44+
public function getPartId()
4545
{
4646
return $this->partId;
4747
}
4848

4949
/**
5050
* @return string
5151
*/
52-
public function getMimeType(): string
52+
public function getMimeType()
5353
{
5454
return $this->mimeType;
5555
}
5656

5757
/**
5858
* @return string
5959
*/
60-
public function getName(): string
60+
public function getName()
6161
{
6262
return $this->name;
6363
}
6464

6565
/**
6666
* @return string
6767
*/
68-
public function getEncoding(): string
68+
public function getEncoding()
6969
{
7070
return $this->encoding;
7171
}

0 commit comments

Comments
 (0)