For now there is no mudule ListControl, it is just class declared in global scope,
so to use it as a class (instead of just type hint) you need to declare WB_ListControl global
class in your module:
declareclass WB_ListControl<T> extends ListControl<T> {};
So do not use it directly, unless you are rewriting old code.
For now there is no mudule ListControl, it is just class declared in global scope, so to use it as a class (instead of just type hint) you need to declare WB_ListControl global class in your module:
declare class WB_ListControl<T> extends ListControl<T> {}; So do not use it directly, unless you are rewriting old code.