aboutsummaryrefslogtreecommitdiffstats
path: root/includes/parser/Hook
diff options
context:
space:
mode:
Diffstat (limited to 'includes/parser/Hook')
-rw-r--r--includes/parser/Hook/InternalParseBeforeLinksHook.php2
-rw-r--r--includes/parser/Hook/ParserAfterParseHook.php2
-rw-r--r--includes/parser/Hook/ParserBeforeInternalParseHook.php2
-rw-r--r--includes/parser/Hook/ParserBeforePreprocessHook.php2
-rw-r--r--includes/parser/Hook/ParserCacheSaveCompleteHook.php4
-rw-r--r--includes/parser/Hook/ParserGetVariableValueSwitchHook.php2
-rw-r--r--includes/parser/Hook/RejectParserCacheValueHook.php2
7 files changed, 8 insertions, 8 deletions
diff --git a/includes/parser/Hook/InternalParseBeforeLinksHook.php b/includes/parser/Hook/InternalParseBeforeLinksHook.php
index b894d39f1aa3..ea90e324e93f 100644
--- a/includes/parser/Hook/InternalParseBeforeLinksHook.php
+++ b/includes/parser/Hook/InternalParseBeforeLinksHook.php
@@ -3,7 +3,7 @@
namespace MediaWiki\Hook;
use MediaWiki\Parser\Parser;
-use StripState;
+use MediaWiki\Parser\StripState;
/**
* This is a hook handler interface, see docs/Hooks.md.
diff --git a/includes/parser/Hook/ParserAfterParseHook.php b/includes/parser/Hook/ParserAfterParseHook.php
index 597a3d8c2705..b24d31f4a8b3 100644
--- a/includes/parser/Hook/ParserAfterParseHook.php
+++ b/includes/parser/Hook/ParserAfterParseHook.php
@@ -3,7 +3,7 @@
namespace MediaWiki\Hook;
use MediaWiki\Parser\Parser;
-use StripState;
+use MediaWiki\Parser\StripState;
/**
* This is a hook handler interface, see docs/Hooks.md.
diff --git a/includes/parser/Hook/ParserBeforeInternalParseHook.php b/includes/parser/Hook/ParserBeforeInternalParseHook.php
index dd06e7f43616..82b7553501a4 100644
--- a/includes/parser/Hook/ParserBeforeInternalParseHook.php
+++ b/includes/parser/Hook/ParserBeforeInternalParseHook.php
@@ -3,7 +3,7 @@
namespace MediaWiki\Hook;
use MediaWiki\Parser\Parser;
-use StripState;
+use MediaWiki\Parser\StripState;
/**
* This is a hook handler interface, see docs/Hooks.md.
diff --git a/includes/parser/Hook/ParserBeforePreprocessHook.php b/includes/parser/Hook/ParserBeforePreprocessHook.php
index 3780d2e8a4d8..6c61d7b6cc8d 100644
--- a/includes/parser/Hook/ParserBeforePreprocessHook.php
+++ b/includes/parser/Hook/ParserBeforePreprocessHook.php
@@ -3,7 +3,7 @@
namespace MediaWiki\Hook;
use MediaWiki\Parser\Parser;
-use StripState;
+use MediaWiki\Parser\StripState;
/**
* This is a hook handler interface, see docs/Hooks.md.
diff --git a/includes/parser/Hook/ParserCacheSaveCompleteHook.php b/includes/parser/Hook/ParserCacheSaveCompleteHook.php
index c878d8a746f6..2a961be4b573 100644
--- a/includes/parser/Hook/ParserCacheSaveCompleteHook.php
+++ b/includes/parser/Hook/ParserCacheSaveCompleteHook.php
@@ -2,10 +2,10 @@
namespace MediaWiki\Hook;
+use MediaWiki\Parser\ParserCache;
+use MediaWiki\Parser\ParserOptions;
use MediaWiki\Parser\ParserOutput;
use MediaWiki\Title\Title;
-use ParserCache;
-use ParserOptions;
/**
* This is a hook handler interface, see docs/Hooks.md.
diff --git a/includes/parser/Hook/ParserGetVariableValueSwitchHook.php b/includes/parser/Hook/ParserGetVariableValueSwitchHook.php
index 550b3c34ad20..733431bcc45f 100644
--- a/includes/parser/Hook/ParserGetVariableValueSwitchHook.php
+++ b/includes/parser/Hook/ParserGetVariableValueSwitchHook.php
@@ -3,7 +3,7 @@
namespace MediaWiki\Hook;
use MediaWiki\Parser\Parser;
-use PPFrame;
+use MediaWiki\Parser\PPFrame;
/**
* This is a hook handler interface, see docs/Hooks.md.
diff --git a/includes/parser/Hook/RejectParserCacheValueHook.php b/includes/parser/Hook/RejectParserCacheValueHook.php
index 03fbae4efcb8..aec164a2d4c7 100644
--- a/includes/parser/Hook/RejectParserCacheValueHook.php
+++ b/includes/parser/Hook/RejectParserCacheValueHook.php
@@ -2,8 +2,8 @@
namespace MediaWiki\Hook;
+use MediaWiki\Parser\ParserOptions;
use MediaWiki\Parser\ParserOutput;
-use ParserOptions;
use WikiPage;
/**