From b44d2a05f5db4a6d1dd6f5e1b6a6b98f554fd98f Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Wed, 3 Apr 2013 13:13:36 -0700 Subject: [PATCH] Added some missing @since tags. Change-Id: I31c264aebf63f4bcaa3042f624e91dc27f5687e8 --- includes/job/Job.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/job/Job.php b/includes/job/Job.php index 7e2fbf567b..c6787a0ba9 100644 --- a/includes/job/Job.php +++ b/includes/job/Job.php @@ -195,6 +195,7 @@ abstract class Job { /** * @return bool Whether this job can be retried on failure by job runners + * @since 1.21 */ public function allowRetries() { return true; @@ -204,6 +205,7 @@ abstract class Job { * Subclasses may need to override this to make duplication detection work * * @return Array Map of key/values + * @since 1.21 */ public function getDeduplicationInfo() { $info = array( @@ -225,6 +227,7 @@ abstract class Job { /** * @param string $key A key that identifies the task * @return Array + * @since 1.21 */ public static function newRootJobParams( $key ) { return array( -- 2.20.1