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
260B

  1. <?php
  2. namespace domain\Document\Invoice;
  3. use domain\Document\Document\DocumentBuilder;
  4. class InvoiceBuilder extends DocumentBuilder
  5. {
  6. public function instanciateInvoice(): Invoice
  7. {
  8. $invoice = new Invoice();
  9. return $invoice;
  10. }
  11. }