Remove `final` from private methods in EmailDeliveryBackgroundJob
authorTim Düsterhus <duesterhus@woltlab.com>
Mon, 15 Feb 2021 13:37:44 +0000 (14:37 +0100)
committerTim Düsterhus <duesterhus@woltlab.com>
Thu, 18 Feb 2021 15:25:20 +0000 (16:25 +0100)
wcfsetup/install/files/lib/system/background/job/EmailDeliveryBackgroundJob.class.php

index 2930599c80dfe0a7240ba84bf415755c08c43ee4..4718361624ac1c755c877e09d70916f39e03c816 100644 (file)
@@ -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' => [