I am in the process of making a PHP web application. I have a situation that I believe would foster a good time for nested inheritance. Anyway, here is my situation:
public class RecurringWeeklyEvent extends RecurringEvent { }
public class RecurringEvent extends Event { }
It does not seem to me that this would be a bad design practice; however, I am not an advanced Object-Oriented programmer by any means. With that said, before I venture off using this kind of code in my application, I would like to know if this is a good or bad practice from more experienced/qualified programmers.
NOTE: I changed the title from multiple inheritance to nested inheritance after being corrected of using the wrong term.
Thanks
Steve