Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

23 lines
552B

  1. <?php
  2. namespace domain\Producer\ProducerPriceRange;
  3. use domain\_\AbstractBuilder;
  4. class ProducerPriceRangeBuilder extends AbstractBuilder
  5. {
  6. public function instanciateProducerPriceRange(): ProducerPriceRange
  7. {
  8. $producerPriceRange = new ProducerPriceRange();
  9. return $producerPriceRange;
  10. }
  11. public function createProducerPriceRange(): ProducerPriceRange
  12. {
  13. $producerPriceRange = $this->instanciateProducerPriceRange();
  14. $this->create($producerPriceRange);
  15. return $producerPriceRange;
  16. }
  17. }