summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Translate/translationaids/QueryAggregatorAwareTranslationAid.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/Translate/translationaids/QueryAggregatorAwareTranslationAid.php')
-rw-r--r--www/wiki/extensions/Translate/translationaids/QueryAggregatorAwareTranslationAid.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/www/wiki/extensions/Translate/translationaids/QueryAggregatorAwareTranslationAid.php b/www/wiki/extensions/Translate/translationaids/QueryAggregatorAwareTranslationAid.php
index d3b4cf82..11358315 100644
--- a/www/wiki/extensions/Translate/translationaids/QueryAggregatorAwareTranslationAid.php
+++ b/www/wiki/extensions/Translate/translationaids/QueryAggregatorAwareTranslationAid.php
@@ -4,7 +4,7 @@
*
* @file
* @author Niklas Laxström
- * @license GPL-2.0+
+ * @license GPL-2.0-or-later
*/
/**
@@ -17,7 +17,7 @@ abstract class QueryAggregatorAwareTranslationAid
extends TranslationAid
implements QueryAggregatorAware
{
- private $queries = array();
+ private $queries = [];
private $aggregator;
// Interface: QueryAggregatorAware
@@ -35,12 +35,12 @@ abstract class QueryAggregatorAwareTranslationAid
protected function storeQuery( TranslationWebService $service, $from, $to, $text ) {
$queries = $service->getQueries( $text, $from, $to );
foreach ( $queries as $query ) {
- $this->queries[] = array(
+ $this->queries[] = [
'id' => $this->aggregator->addQuery( $query ),
'language' => $from,
'text' => $text,
'service' => $service,
- );
+ ];
}
}
@@ -68,7 +68,7 @@ abstract class QueryAggregatorAwareTranslationAid
protected function getWebServices( $type ) {
global $wgTranslateTranslationServices;
- $services = array();
+ $services = [];
foreach ( $wgTranslateTranslationServices as $name => $config ) {
$service = TranslationWebService::factory( $name, $config );
if ( !$service || $service->getType() !== $type ) {