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.

15 lines
258B

  1. <?php
  2. namespace domain\Document\Quotation;
  3. use domain\_\AbstractBuilder;
  4. class QuotationBuilder extends AbstractBuilder
  5. {
  6. public function instanciateQuotation(): Quotation
  7. {
  8. $quotation = new Quotation();
  9. return $quotation;
  10. }
  11. }