diff options
author | James D. Forrester <jforrester@wikimedia.org> | 2024-10-03 14:39:06 -0400 |
---|---|---|
committer | Reedy <reedy@wikimedia.org> | 2024-10-15 23:54:32 +0100 |
commit | a5387c7c208b23b848f3c93a84a58ebb14c698cf (patch) | |
tree | a343730570c760f99459a88fb36aaa2cbefcf3eb /includes/parser/PPCustomFrame_Hash.php | |
parent | 23ec5ff94eff84bc2661b08cf940ed7f2f771080 (diff) | |
download | mediawikicore-a5387c7c208b23b848f3c93a84a58ebb14c698cf.tar.gz mediawikicore-a5387c7c208b23b848f3c93a84a58ebb14c698cf.zip |
Namespace all remaining classes in includes/parser
Bug: T353458
Change-Id: If02cc9b1ff78e26c1cf8c91ee4695845eb133829
Diffstat (limited to 'includes/parser/PPCustomFrame_Hash.php')
-rw-r--r-- | includes/parser/PPCustomFrame_Hash.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/includes/parser/PPCustomFrame_Hash.php b/includes/parser/PPCustomFrame_Hash.php index 298634588754..38b451367681 100644 --- a/includes/parser/PPCustomFrame_Hash.php +++ b/includes/parser/PPCustomFrame_Hash.php @@ -19,6 +19,8 @@ * @ingroup Parser */ +namespace MediaWiki\Parser; + /** * Expansion frame with custom arguments * @ingroup Parser @@ -73,3 +75,6 @@ class PPCustomFrame_Hash extends PPFrame_Hash { return $this->args; } } + +/** @deprecated class alias since 1.43 */ +class_alias( PPCustomFrame_Hash::class, 'PPCustomFrame_Hash' ); |