Skip to content

Commit 04723d0

Browse files
carusogabrielSynchro
authored andcommitted
Remove unecessary cast (PHPMailer#1595)
1 parent 43b7742 commit 04723d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SMTP.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ public function data($msg_data)
733733
public function hello($host = '')
734734
{
735735
//Try extended hello first (RFC 2821)
736-
return (bool) ($this->sendHello('EHLO', $host) or $this->sendHello('HELO', $host));
736+
return $this->sendHello('EHLO', $host) or $this->sendHello('HELO', $host);
737737
}
738738

739739
/**

0 commit comments

Comments
 (0)