Remove more @function error suppressions

This commit is contained in:
djmaze 2020-03-20 23:43:24 +01:00
parent a1ce3f0e84
commit 0d54a372df
5 changed files with 34 additions and 51 deletions

View file

@ -174,7 +174,7 @@ class SmtpClient extends \MailSo\Net\NetClient
$sContinuationResponse = !empty($this->aResults[0]) ? \trim($this->aResults[0]) : '';
if ($sContinuationResponse && '334 ' === \substr($sContinuationResponse, 0, 4) && 0 < \strlen(\substr($sContinuationResponse, 4)))
{
$sTicket = @\base64_decode(\substr($sContinuationResponse, 4));
$sTicket = \base64_decode(\substr($sContinuationResponse, 4));
$this->writeLogWithCrlf('ticket: '.$sTicket);
}