You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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