diff options
author | James D. Forrester <jforrester@wikimedia.org> | 2024-02-08 09:56:54 -0500 |
---|---|---|
committer | James D. Forrester <jforrester@wikimedia.org> | 2024-02-08 11:07:01 -0500 |
commit | 4bae64d1c7f9e62d0f0953e124493ed76c7f7da7 (patch) | |
tree | 28d1c5b9c206493391725a02588cf70cfe204e01 /includes/actions/Hook | |
parent | 686ab5623a3c257f2db935850bb50684193613d1 (diff) | |
download | mediawikicore-4bae64d1c7f9e62d0f0953e124493ed76c7f7da7.tar.gz mediawikicore-4bae64d1c7f9e62d0f0953e124493ed76c7f7da7.zip |
Namespace includes/context
Bug: T353458
Change-Id: I4dbef138fd0110c14c70214282519189d70c94fb
Diffstat (limited to 'includes/actions/Hook')
-rw-r--r-- | includes/actions/Hook/GetActionNameHook.php | 2 | ||||
-rw-r--r-- | includes/actions/Hook/HistoryPageToolLinksHook.php | 2 | ||||
-rw-r--r-- | includes/actions/Hook/InfoActionHook.php | 2 | ||||
-rw-r--r-- | includes/actions/Hook/PageHistoryBeforeListHook.php | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/includes/actions/Hook/GetActionNameHook.php b/includes/actions/Hook/GetActionNameHook.php index 2fd3c6f01821..e3c93b9d2220 100644 --- a/includes/actions/Hook/GetActionNameHook.php +++ b/includes/actions/Hook/GetActionNameHook.php @@ -2,7 +2,7 @@ namespace MediaWiki\Actions\Hook; -use IContextSource; +use MediaWiki\Context\IContextSource; /** * @stable to implement diff --git a/includes/actions/Hook/HistoryPageToolLinksHook.php b/includes/actions/Hook/HistoryPageToolLinksHook.php index dcd4bc90f1d4..3622c795425a 100644 --- a/includes/actions/Hook/HistoryPageToolLinksHook.php +++ b/includes/actions/Hook/HistoryPageToolLinksHook.php @@ -2,7 +2,7 @@ namespace MediaWiki\Hook; -use IContextSource; +use MediaWiki\Context\IContextSource; use MediaWiki\Linker\LinkRenderer; /** diff --git a/includes/actions/Hook/InfoActionHook.php b/includes/actions/Hook/InfoActionHook.php index 47d92ce28e72..0b669f770547 100644 --- a/includes/actions/Hook/InfoActionHook.php +++ b/includes/actions/Hook/InfoActionHook.php @@ -2,7 +2,7 @@ namespace MediaWiki\Hook; -use IContextSource; +use MediaWiki\Context\IContextSource; /** * This is a hook handler interface, see docs/Hooks.md. diff --git a/includes/actions/Hook/PageHistoryBeforeListHook.php b/includes/actions/Hook/PageHistoryBeforeListHook.php index 8e5832d0c777..bd287aab7bcb 100644 --- a/includes/actions/Hook/PageHistoryBeforeListHook.php +++ b/includes/actions/Hook/PageHistoryBeforeListHook.php @@ -3,7 +3,7 @@ namespace MediaWiki\Hook; use Article; -use IContextSource; +use MediaWiki\Context\IContextSource; /** * This is a hook handler interface, see docs/Hooks.md. |