Beispiel #1
0
 public function __construct()
 {
     $carFactory = new CarFactory();
     $shipFactory = new ShipFactory();
     $smallCar = $carFactory->createSmallVehicle();
     $bigCar = $carFactory->createBigVehicle();
     $smallShip = $shipFactory->createSmallVehicle();
     $bigShip = $shipFactory->createBigVehicle();
 }