aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/includes/content/WikitextContentHandlerTest.php
diff options
context:
space:
mode:
authorEbrahim Byagowi <ebrahim@gnu.org>2024-08-06 17:10:20 +0330
committerEbrahim Byagowi <ebrahim@gnu.org>2024-08-06 17:42:51 +0330
commit4c270a72ac83dae230897a16dfee74496546093e (patch)
tree61dcc83fd07e195fb10f51c721ce9041f2dc5273 /tests/phpunit/includes/content/WikitextContentHandlerTest.php
parente1c682d1e9ceedb972728bd44ffeaa8e8fb3cc32 (diff)
downloadmediawikicore-4c270a72ac83dae230897a16dfee74496546093e.tar.gz
mediawikicore-4c270a72ac83dae230897a16dfee74496546093e.zip
Add namespace to WikitextContent
It adds MediaWiki\Content namespace to WikitextContent and two classes related. Change-Id: Ib74e4c5b3edac6aa0e35d3b2093ce1d0b794cb6d
Diffstat (limited to 'tests/phpunit/includes/content/WikitextContentHandlerTest.php')
-rw-r--r--tests/phpunit/includes/content/WikitextContentHandlerTest.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/phpunit/includes/content/WikitextContentHandlerTest.php b/tests/phpunit/includes/content/WikitextContentHandlerTest.php
index f79d51a16e70..cff7f08cf2a3 100644
--- a/tests/phpunit/includes/content/WikitextContentHandlerTest.php
+++ b/tests/phpunit/includes/content/WikitextContentHandlerTest.php
@@ -1,5 +1,7 @@
<?php
+use MediaWiki\Content\WikitextContent;
+use MediaWiki\Content\WikitextContentHandler;
use MediaWiki\MainConfigNames;
use MediaWiki\Page\PageReferenceValue;
use MediaWiki\Parser\ParserOutput;
@@ -13,7 +15,7 @@ use Wikimedia\TestingAccessWrapper;
* See also unit tests at \MediaWiki\Tests\Unit\WikitextContentHandlerTest
*
* @group ContentHandler
- * @covers \WikitextContentHandler
+ * @covers \MediaWiki\Content\WikitextContentHandler
* @covers \TextContentHandler
* @covers \ContentHandler
*/