From 9d7ff98f98b57a5bf9c463193ebacc8c669f69c5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Mon, 15 Feb 2021 14:37:44 +0100 Subject: [PATCH] Remove `final` from private methods in EmailDeliveryBackgroundJob --- .../background/job/EmailDeliveryBackgroundJob.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wcfsetup/install/files/lib/system/background/job/EmailDeliveryBackgroundJob.class.php b/wcfsetup/install/files/lib/system/background/job/EmailDeliveryBackgroundJob.class.php index 2930599c80..4718361624 100644 --- a/wcfsetup/install/files/lib/system/background/job/EmailDeliveryBackgroundJob.class.php +++ b/wcfsetup/install/files/lib/system/background/job/EmailDeliveryBackgroundJob.class.php @@ -80,7 +80,7 @@ class EmailDeliveryBackgroundJob extends AbstractBackgroundJob /** * Creates the email log entry. */ - final private function createLog(): EmailLogEntry + private function createLog(): EmailLogEntry { return (new EmailLogEntryAction([], 'create', [ 'data' => [ @@ -96,7 +96,7 @@ class EmailDeliveryBackgroundJob extends AbstractBackgroundJob /** * Updates the status of the log entry. */ - final private function updateStatus(string $status, string $message = ''): void + private function updateStatus(string $status, string $message = ''): void { (new EmailLogEntryAction([$this->emailLogEntryId], 'update', [ 'data' => [ -- 2.20.1