Interface segregation but what about our objects?

Interface segregation but what about our objects?

The I in SOLID stands for ‘Interface Segregation’. This is a fancy way of saying “splitting apart dependencies”. Basically, an object should not have to depend on more than it absolutely has too. If it does, it may have to be modified when the...