mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Gadgets
synced 2024-11-14 19:14:45 +00:00
Add global class_alias for Gadget
Used for serialization purposes... Change-Id: I3345ad668aa55596bc9ec18b56d9891f10bb0285
This commit is contained in:
parent
01f6a6c34e
commit
2952dadb9f
|
@ -66,7 +66,9 @@
|
|||
"gadgets-definition"
|
||||
],
|
||||
"AutoloadClasses": {
|
||||
"Gadget": "includes/Gadget.php",
|
||||
"GadgetRepo": "includes/GadgetRepo.php",
|
||||
"MediaWiki\\Extension\\Gadgets\\Gadget": "includes/Gadget.php",
|
||||
"MediaWiki\\Extension\\Gadgets\\GadgetRepo": "includes/GadgetRepo.php"
|
||||
},
|
||||
"AutoloadNamespaces": {
|
||||
|
|
|
@ -417,3 +417,5 @@ class Gadget {
|
|||
return 'general';
|
||||
}
|
||||
}
|
||||
|
||||
class_alias( Gadget::class, 'Gadget' );
|
||||
|
|
Loading…
Reference in a new issue