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.

19 line
425B

  1. <?php
  2. namespace common\logic\Document\DeliveryNote;
  3. use common\logic\Document\Document\DocumentManager;
  4. use common\logic\PointSale\PointSale\DeliveryNoteRepository;
  5. /**
  6. * @mixin DeliveryNoteSolver
  7. * @mixin DeliveryNoteRepository
  8. * @mixin DeliveryNoteBuilder
  9. */
  10. class DeliveryNoteManager extends DocumentManager
  11. {
  12. public function __construct()
  13. {
  14. $this->setContainer(new DeliveryNoteContainer());
  15. }
  16. }