Jim Hu wrote:
php does not have multiple inheritance AFAIK, but you can instantiate an object of class WizardBase within your execute method within a SpecialPage object and call WizardBase methods on it.
Aka delegation. Multiple inheritance is over-sold and overused IMNSHO.
Delegation will do what the OP wants rather well.
Mike