Update moved class TitleFactory

See T321882
Moved in Iac1688172ee457

Bug: T321681
Change-Id: I8c171d4cb1413d2acd20016f85220e9a33a006da
This commit is contained in:
gerritbot 2023-04-19 16:55:32 +00:00
parent e0da182083
commit 7ab2ea01a1
2 changed files with 11 additions and 4 deletions

View file

@ -20,11 +20,16 @@
"APIMetaModules": {
"notifications": {
"class": "MediaWiki\\Extension\\Notifications\\Api\\ApiEchoNotifications",
"services": [ "MainConfig" ]
"services": [
"MainConfig"
]
},
"unreadnotificationpages": {
"class": "MediaWiki\\Extension\\Notifications\\Api\\ApiEchoUnreadNotificationPages",
"services": [ "PageStore", "TitleFactory" ]
"services": [
"PageStore",
"TitleFactory"
]
}
},
"APIModules": {
@ -511,7 +516,9 @@
"HookHandlers": {
"main": {
"class": "MediaWiki\\Extension\\Notifications\\Hooks",
"services": [ "MainConfig" ]
"services": [
"MainConfig"
]
}
},
"config": {

View file

@ -9,10 +9,10 @@ use EchoServices;
use MediaWiki\Logger\LoggerFactory;
use MediaWiki\Page\PageRecord;
use MediaWiki\Page\PageStore;
use MediaWiki\Title\TitleFactory;
use MWEchoDbFactory;
use MWEchoNotifUser;
use Title;
use TitleFactory;
use WikiMap;
use Wikimedia\ParamValidator\ParamValidator;
use Wikimedia\ParamValidator\TypeDef\IntegerDef;