From 2b56938dd6bd1159f9a4fc5b88f378715cf4ae0e Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sat, 23 May 2015 11:04:18 -0700 Subject: [PATCH] Cleaned up some Job doc types Change-Id: I205345819bc07575995ab9aff54f40d547bd1d6f --- includes/jobqueue/JobQueue.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/jobqueue/JobQueue.php b/includes/jobqueue/JobQueue.php index fd4234d507..73ca3a8eaa 100644 --- a/includes/jobqueue/JobQueue.php +++ b/includes/jobqueue/JobQueue.php @@ -286,7 +286,7 @@ abstract class JobQueue { * This does not require $wgJobClasses to be set for the given job type. * Outside callers should use JobQueueGroup::push() instead of this function. * - * @param Job|array $jobs A single job or an array of Jobs + * @param JobSpecification|JobSpecification[] $jobs * @param int $flags Bitfield (supports JobQueue::QOS_ATOMIC) * @return void * @throws JobQueueError @@ -301,7 +301,7 @@ abstract class JobQueue { * This does not require $wgJobClasses to be set for the given job type. * Outside callers should use JobQueueGroup::push() instead of this function. * - * @param array $jobs List of Jobs + * @param JobSpecification[] $jobs * @param int $flags Bitfield (supports JobQueue::QOS_ATOMIC) * @return void * @throws MWException @@ -327,7 +327,7 @@ abstract class JobQueue { /** * @see JobQueue::batchPush() - * @param array $jobs + * @param JobSpecification[] $jobs * @param int $flags */ abstract protected function doBatchPush( array $jobs, $flags ); -- 2.20.1