From 0c6de4a806a9de36572bd2191fae6602c95e4c96 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Tue, 28 Feb 2023 12:04:19 +1300 Subject: [PATCH] Make function private --- CRM/Utils/Mail/Logger.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; -- 2.25.1