summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Translate/utils/MessageGroupStatesUpdaterJob.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/Translate/utils/MessageGroupStatesUpdaterJob.php')
-rw-r--r--www/wiki/extensions/Translate/utils/MessageGroupStatesUpdaterJob.php13
1 files changed, 7 insertions, 6 deletions
diff --git a/www/wiki/extensions/Translate/utils/MessageGroupStatesUpdaterJob.php b/www/wiki/extensions/Translate/utils/MessageGroupStatesUpdaterJob.php
index a788bb54..c40bc4ec 100644
--- a/www/wiki/extensions/Translate/utils/MessageGroupStatesUpdaterJob.php
+++ b/www/wiki/extensions/Translate/utils/MessageGroupStatesUpdaterJob.php
@@ -5,7 +5,7 @@
* @file
* @author Niklas Laxström
* @copyright Copyright © 2012-2013, Niklas Laxström
- * @license GPL-2.0+
+ * @license GPL-2.0-or-later
*/
/**
@@ -17,9 +17,8 @@ class MessageGroupStatesUpdaterJob extends Job {
/**
* @param Title $title
* @param array $params
- * @param int $id
*/
- public function __construct( $title, $params = array() ) {
+ public function __construct( $title, $params = [] ) {
parent::__construct( __CLASS__, $title, $params );
$this->removeDuplicates = true;
}
@@ -27,6 +26,8 @@ class MessageGroupStatesUpdaterJob extends Job {
/**
* Hook: TranslateEventTranslationReview
* and also on translation changes
+ * @param MessageHandle $handle
+ * @return true
*/
public static function onChange( MessageHandle $handle ) {
$job = self::newJob( $handle->getTitle() );
@@ -36,8 +37,8 @@ class MessageGroupStatesUpdaterJob extends Job {
}
/**
- * @param $title
- * @return MessageGroupStatesUpdaterJob
+ * @param Title $title
+ * @return self
*/
public static function newJob( $title ) {
$job = new self( $title );
@@ -68,7 +69,7 @@ class MessageGroupStatesUpdaterJob extends Job {
}
public static function getGroupsWithTransitions( MessageHandle $handle ) {
- $listeners = array();
+ $listeners = [];
foreach ( $handle->getGroupIds() as $id ) {
$group = MessageGroups::getGroup( $id );