From: Eileen McNaughton Date: Mon, 27 Feb 2023 23:04:19 +0000 (+1300) Subject: Make function private X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=0c6de4a806a9de36572bd2191fae6602c95e4c96;p=civicrm-core.git Make function private --- diff --git a/CRM/Utils/Mail/Logger.php b/CRM/Utils/Mail/Logger.php index bc70ae0989..66e75b704b 100644 --- a/CRM/Utils/Mail/Logger.php +++ b/CRM/Utils/Mail/Logger.php @@ -44,7 +44,7 @@ class CRM_Utils_Mail_Logger { * @param string[] $headers * @param string $message */ - public static function log($to, $headers, $message) { + private static function log($to, $headers, $message) { if (is_array($to)) { $toString = implode(', ', $to); $fileName = $to[0];