From c003aae57f940255cbe98b64e9641303909f25ef Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 13 Apr 2020 10:44:10 +0200 Subject: [PATCH] autofixes --- Message/Mail/Mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Message/Mail/Mail.php b/Message/Mail/Mail.php index 56f68c0bd..a8cfd44e5 100644 --- a/Message/Mail/Mail.php +++ b/Message/Mail/Mail.php @@ -1114,7 +1114,7 @@ class Mail $matches += \preg_match_all('/[\000-\010\013\014\016-\037\177-\377]/', $value, $matched); } - $charset = ((bool) preg_match('/[\x80-\xFF]/', $value)) ? $this->charset : CharsetType::ASCII; + $charset = ((bool) \preg_match('/[\x80-\xFF]/', $value)) ? $this->charset : CharsetType::ASCII; $overhead = \strlen($charset) + 8; $maxlength = $this->submitType === SubmitType::MAIL ? 63 - $overhead : 998 - $overhead;