I'm try to think how I can understand this UML diagram and check how I can represent it to code:
What is make me confuse, we have an association relation between Company and Employee interface, and Designer classe is implement the Employee interface, but how we can connect Company with Employee interface?
What I understand (PHP for Example):
class Company { ... } class GameDevCompany extends Company { ... } class Designer extends GameDevCompany implements Employee { ... } If I think about this diagram like this code, its a truth way or I missing something or make something wrong?
Thanks
