aboutsummaryrefslogtreecommitdiffstats
path: root/includes/parser/PPDStack_Hash.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/parser/PPDStack_Hash.php')
-rw-r--r--includes/parser/PPDStack_Hash.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/includes/parser/PPDStack_Hash.php b/includes/parser/PPDStack_Hash.php
index ededf4bfcaca..386f75a86882 100644
--- a/includes/parser/PPDStack_Hash.php
+++ b/includes/parser/PPDStack_Hash.php
@@ -19,6 +19,10 @@
* @ingroup Parser
*/
+namespace MediaWiki\Parser;
+
+use RuntimeException;
+
/**
* Stack class to help Preprocessor::preprocessToObj()
* @ingroup Parser
@@ -117,3 +121,6 @@ class PPDStack_Hash {
}
}
}
+
+/** @deprecated class alias since 1.43 */
+class_alias( PPDStack_Hash::class, 'PPDStack_Hash' );