Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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