aboutsummaryrefslogtreecommitdiffstats
path: root/includes/parser/PPDStack_Hash.php
diff options
context:
space:
mode:
authorJames D. Forrester <jforrester@wikimedia.org>2024-10-03 14:39:06 -0400
committerReedy <reedy@wikimedia.org>2024-10-15 23:54:32 +0100
commita5387c7c208b23b848f3c93a84a58ebb14c698cf (patch)
treea343730570c760f99459a88fb36aaa2cbefcf3eb /includes/parser/PPDStack_Hash.php
parent23ec5ff94eff84bc2661b08cf940ed7f2f771080 (diff)
downloadmediawikicore-a5387c7c208b23b848f3c93a84a58ebb14c698cf.tar.gz
mediawikicore-a5387c7c208b23b848f3c93a84a58ebb14c698cf.zip
Namespace all remaining classes in includes/parser
Bug: T353458 Change-Id: If02cc9b1ff78e26c1cf8c91ee4695845eb133829
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' );