diff --git a/core/lib/Drupal/Core/Batch/BatchQueueController.php b/core/lib/Drupal/Core/Batch/BatchQueueController.php index c96c7131f6..04ffd851ef 100644 --- a/core/lib/Drupal/Core/Batch/BatchQueueController.php +++ b/core/lib/Drupal/Core/Batch/BatchQueueController.php @@ -244,8 +244,7 @@ public static function getQueueForBatch($batch) { * @return array * The current batch set. * - * @deprecated This is an internal function and will be removed. Use - * _batch_current_set() instead. + * @internal */ public static function &getCurrentSet() { return self::$batches['sets'][self::$batches['current_set']]; @@ -262,8 +261,7 @@ public static function &getCurrentSet() { * TRUE if a subsequent set was found in the batch; FALSE will be returned * if no subsequent set was found. * - * @deprecated This is an internal function and will be removed. Use - * _batch_next_set() instead. + * @internal */ public static function nextSet() { if (isset(self::$batches['sets'][self::$batches['current_set'] + 1])) { @@ -291,8 +289,7 @@ public static function nextSet() { * @return array * An array containing a completion value (in percent) and a status message. * - * @deprecated This is an internal function and will be removed. Use - * _batch_process() instead. + * @internal */ public static function processQueue() { $current_set = &self::getCurrentSet(); @@ -431,8 +428,7 @@ public static function processQueue() { * A redirect response to the completed page or NULL to stay at the current * URL. * - * @deprecated This is an internal function and will be removed. Use - * _batch_finished() instead. + * @internal */ public static function finishedProcessing() { self::$batches = &batch_get();