aboutsummaryrefslogtreecommitdiffstats
path: root/includes/parser/PPNode_Hash_Tree.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/parser/PPNode_Hash_Tree.php')
-rw-r--r--includes/parser/PPNode_Hash_Tree.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/includes/parser/PPNode_Hash_Tree.php b/includes/parser/PPNode_Hash_Tree.php
index bab386fa3669..b7bec7775256 100644
--- a/includes/parser/PPNode_Hash_Tree.php
+++ b/includes/parser/PPNode_Hash_Tree.php
@@ -19,6 +19,12 @@
* @ingroup Parser
*/
+namespace MediaWiki\Parser;
+
+use BadMethodCallException;
+use InvalidArgumentException;
+use Stringable;
+
/**
* @ingroup Parser
*/
@@ -368,3 +374,6 @@ class PPNode_Hash_Tree implements Stringable, PPNode {
return $bits;
}
}
+
+/** @deprecated class alias since 1.43 */
+class_alias( PPNode_Hash_Tree::class, 'PPNode_Hash_Tree' );