So carrying on my earlier post about classes and cars.
https://board.phpbuilder.com/d/10402542-oop-list-of-objects/7
I have a new question.
I have a Car class. I have a CarsList class (listing all the cars in my database) but I also want a Fleet class.
This will be a list of Car objects but with more information such as FleetID, Delivered, ArrivalDate, CurrentValue etc.
Should I just add more fields to the Car class and leave them blank when not used or should I have a FleetCar class which is exactly the same as Car class but with more information?