Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }