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.

16 lines
314B

  1. <?php
  2. namespace common\logic\Document\Quotation;
  3. use common\logic\BaseService;
  4. use common\logic\BuilderInterface;
  5. class QuotationBuilder extends BaseService implements BuilderInterface
  6. {
  7. public function instanciate(): Quotation
  8. {
  9. $quotation = new Quotation();
  10. return $quotation;
  11. }
  12. }