Hello
I’m only kind of new to OOP design, so I have a question:
As far as good program design goes, what’s the best way to implement your own debugging class? Would you use it as the superclass and have everything else extend it? If not, what’s the best (and by best, I mean best practice) way to use the methods of my debugging class? In PHP < 5, you can do multi-tiered class inheritance, right? ie, childClass extends superClass, childChildClass extends childClass. If anybody has any OOP design experience and knows what kind of answers I’m looking for I would greatly appreciate it.
Thanks
John F