You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
358B

  1. <?php
  2. namespace domain\Product\Accessory;
  3. use domain\_\AbstractBuilder;
  4. use domain\Producer\Producer\Producer;
  5. class AccessoryBuilder extends AbstractBuilder
  6. {
  7. public function instanciateAccessory(Producer $producer): Accessory
  8. {
  9. $accessory = new Accessory();
  10. $accessory->setProducer($producer);
  11. return $accessory;
  12. }
  13. }