Add `@since 6.1`
authorCyperghost <olaf_schmitz_1@t-online.de>
Thu, 25 Jan 2024 09:51:55 +0000 (10:51 +0100)
committerCyperghost <olaf_schmitz_1@t-online.de>
Thu, 25 Jan 2024 09:51:55 +0000 (10:51 +0100)
wcfsetup/install/files/lib/system/bulk/processing/IBulkProcessingAction.class.php
wcfsetup/install/files/lib/system/worker/BulkProcessingWorker.class.php

index 6ef7c970083cb1acee26e1243bbfae9dc0349ac2..7f682130df224e2afbe86ffd8e2a15d01563ebeb 100644 (file)
@@ -64,6 +64,7 @@ interface IBulkProcessingAction
      * Returns true if the action can be executed in a worker.
      *
      * @return  bool
+     * @since 6.1
      */
     public function canRunInWorker(): bool;
 
@@ -71,6 +72,7 @@ interface IBulkProcessingAction
      * Returns the additional action parameters that should be serialized.
      *
      * @return  array
+     * @since 6.1
      */
     public function getAdditionalParameters(): array;
 
@@ -78,6 +80,7 @@ interface IBulkProcessingAction
      * Loads the additional action parameters from the given data.
      *
      * @param array $data
+     * @since 6.1
      */
     public function loadAdditionalParameters(array $data): void;
 }
index 4e3e32f641002b26e1adb89d34dab8bcb5e7ed89..0f4f71a267da29298cc6d1fc8ab0b38c51babb66 100644 (file)
@@ -12,6 +12,7 @@ use wcf\system\WCF;
  * @author  Olaf Braun
  * @copyright   2001-2024 WoltLab GmbH
  * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @since 6.1
  */
 final class BulkProcessingWorker extends AbstractWorker
 {