Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

18 lines
366B

  1. <?php
  2. namespace common\logic\Document\Invoice;
  3. use common\logic\Document\Document\DocumentManager;
  4. use common\logic\PointSale\PointSale\InvoiceRepository;
  5. /**
  6. * @mixin InvoiceRepository
  7. * @mixin InvoiceBuilder
  8. */
  9. class InvoiceManager extends DocumentManager
  10. {
  11. public function __construct()
  12. {
  13. $this->setContainer(new InvoiceContainer());
  14. }
  15. }