diff options
author | Alexander Vorwerk <zabe@avorwerk.net> | 2022-12-28 22:50:03 +0100 |
---|---|---|
committer | Zabe <zabe@avorwerk.net> | 2023-01-01 22:34:36 +0000 |
commit | f6bd18d6c268e5067df703b6254fa17c23582122 (patch) | |
tree | 26b222c6d6dde87957c9c810f3a7f6071269fa09 /includes/api/ApiQueryWatchlist.php | |
parent | 933c7db473fe791c2f0ec8e02e4f3b5f95506631 (diff) | |
download | mediawikicore-f6bd18d6c268e5067df703b6254fa17c23582122.tar.gz mediawikicore-f6bd18d6c268e5067df703b6254fa17c23582122.zip |
Split a base class out of CommentStore
so that extensions (i.e. CheckUser) can implement their own comment
store without having a lot of code duplication
basically the comment store version of I3a6486532f2ef36
Bug: T233004
Change-Id: Ib40f99e00a514d41776ce521baf113e46d37e9cd
Diffstat (limited to 'includes/api/ApiQueryWatchlist.php')
-rw-r--r-- | includes/api/ApiQueryWatchlist.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/api/ApiQueryWatchlist.php b/includes/api/ApiQueryWatchlist.php index 52edf47aeff3..0e6ebfc575f8 100644 --- a/includes/api/ApiQueryWatchlist.php +++ b/includes/api/ApiQueryWatchlist.php @@ -21,6 +21,7 @@ */ use MediaWiki\CommentFormatter\CommentFormatter; +use MediaWiki\CommentStore\CommentStore; use MediaWiki\Linker\LinkTarget; use MediaWiki\ParamValidator\TypeDef\UserDef; use MediaWiki\Revision\RevisionRecord; |