diff options
Diffstat (limited to 'MLEB/Translate/tests/phpunit/TranslationFuzzyUpdaterTest.php')
-rw-r--r-- | MLEB/Translate/tests/phpunit/TranslationFuzzyUpdaterTest.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/MLEB/Translate/tests/phpunit/TranslationFuzzyUpdaterTest.php b/MLEB/Translate/tests/phpunit/TranslationFuzzyUpdaterTest.php index 8f1649bf..2ce9401b 100644 --- a/MLEB/Translate/tests/phpunit/TranslationFuzzyUpdaterTest.php +++ b/MLEB/Translate/tests/phpunit/TranslationFuzzyUpdaterTest.php @@ -14,7 +14,7 @@ use MediaWiki\Revision\RevisionRecord; * @group medium */ class TranslationFuzzyUpdaterTest extends MediaWikiIntegrationTestCase { - protected function setUp() : void { + protected function setUp(): void { parent::setUp(); $this->setMwGlobals( [ @@ -48,9 +48,7 @@ class TranslationFuzzyUpdaterTest extends MediaWikiIntegrationTestCase { $content = ContentHandler::makeContent( '$1 van $2', $title ); $status = $page->doEditContent( $content, __METHOD__ ); $value = $status->getValue(); - /** - * @var RevisionRecord $revisionRecord - */ + /** @var RevisionRecord $revisionRecord */ $revisionRecord = $value['revision-record']; $revisionId = $revisionRecord->getId(); |