diff options
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' ); |