diff options
author | Brian Evans <grknight@gentoo.org> | 2021-07-19 15:20:22 -0400 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2021-07-19 15:20:22 -0400 |
commit | 9f092345e6bbecfde8c19e6d1490a6031a35f61f (patch) | |
tree | 2abb2398cd0df686e8608e15097ddc58b8995615 /MLEB/Translate/tests/phpunit/TranslationFuzzyUpdaterTest.php | |
parent | OAuth: Update for fixes and security (diff) | |
download | extensions-9f092345e6bbecfde8c19e6d1490a6031a35f61f.tar.gz extensions-9f092345e6bbecfde8c19e6d1490a6031a35f61f.tar.bz2 extensions-9f092345e6bbecfde8c19e6d1490a6031a35f61f.zip |
Update to MLEB 2021.06
Signed-off-by: Brian Evans <grknight@gentoo.org>
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(); |