aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/includes/page
diff options
context:
space:
mode:
authorUmherirrender <umherirrender_de.wp@web.de>2023-12-11 15:59:55 +0100
committerUmherirrender <umherirrender_de.wp@web.de>2023-12-11 15:59:55 +0100
commit388b0374fa776ef91ea8eea644271f08dd2f81d9 (patch)
tree22e831ac425d729941e1abc8b8f3f46e54f8086c /tests/phpunit/includes/page
parent80790ffc21a49fbe7709eaf5ce634b645798cf47 (diff)
downloadmediawikicore-388b0374fa776ef91ea8eea644271f08dd2f81d9.tar.gz
mediawikicore-388b0374fa776ef91ea8eea644271f08dd2f81d9.zip
tests: Use namespaced classes
Changes to the use statements done automatically via script Addition of missing use statements and changes to docs done manually Change-Id: Ib326ae1e5c8409a98398c721e8b8ce42c73bd012
Diffstat (limited to 'tests/phpunit/includes/page')
-rw-r--r--tests/phpunit/includes/page/ArticleViewTest.php1
-rw-r--r--tests/phpunit/includes/page/PageArchiveTest.php1
-rw-r--r--tests/phpunit/includes/page/UndeletePageTest.php1
-rw-r--r--tests/phpunit/includes/page/WikiPageDbTest.php1
4 files changed, 4 insertions, 0 deletions
diff --git a/tests/phpunit/includes/page/ArticleViewTest.php b/tests/phpunit/includes/page/ArticleViewTest.php
index 759eafe2f238..e428c243c2a1 100644
--- a/tests/phpunit/includes/page/ArticleViewTest.php
+++ b/tests/phpunit/includes/page/ArticleViewTest.php
@@ -1,5 +1,6 @@
<?php
+use MediaWiki\CommentStore\CommentStoreComment;
use MediaWiki\MainConfigNames;
use MediaWiki\Output\OutputPage;
use MediaWiki\Request\FauxRequest;
diff --git a/tests/phpunit/includes/page/PageArchiveTest.php b/tests/phpunit/includes/page/PageArchiveTest.php
index 9c36dec2f94c..f38c38cb02fa 100644
--- a/tests/phpunit/includes/page/PageArchiveTest.php
+++ b/tests/phpunit/includes/page/PageArchiveTest.php
@@ -1,5 +1,6 @@
<?php
+use MediaWiki\CommentStore\CommentStoreComment;
use MediaWiki\Revision\MutableRevisionRecord;
use MediaWiki\Revision\RevisionRecord;
use MediaWiki\Revision\SlotRecord;
diff --git a/tests/phpunit/includes/page/UndeletePageTest.php b/tests/phpunit/includes/page/UndeletePageTest.php
index d3b59095d048..6ea8ad87997b 100644
--- a/tests/phpunit/includes/page/UndeletePageTest.php
+++ b/tests/phpunit/includes/page/UndeletePageTest.php
@@ -1,5 +1,6 @@
<?php
+use MediaWiki\CommentStore\CommentStoreComment;
use MediaWiki\Page\UndeletePage;
use MediaWiki\Revision\SlotRecord;
use MediaWiki\Title\Title;
diff --git a/tests/phpunit/includes/page/WikiPageDbTest.php b/tests/phpunit/includes/page/WikiPageDbTest.php
index 74e8a8cdf3e9..591d0a3fff94 100644
--- a/tests/phpunit/includes/page/WikiPageDbTest.php
+++ b/tests/phpunit/includes/page/WikiPageDbTest.php
@@ -1,6 +1,7 @@
<?php
use MediaWiki\Category\Category;
+use MediaWiki\CommentStore\CommentStoreComment;
use MediaWiki\Content\Renderer\ContentRenderer;
use MediaWiki\Deferred\SiteStatsUpdate;
use MediaWiki\Edit\PreparedEdit;