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

21 line
589B

  1. <?php
  2. namespace common\logic\Document\DeliveryNote\Wrapper;
  3. use common\logic\Document\DeliveryNote\Repository\DeliveryNoteRepository;
  4. use common\logic\Document\DeliveryNote\Service\DeliveryNoteBuilder;
  5. use common\logic\Document\DeliveryNote\Service\DeliveryNoteSolver;
  6. use common\logic\Document\Document\Wrapper\DocumentManager;
  7. /**
  8. * @mixin DeliveryNoteSolver
  9. * @mixin DeliveryNoteRepository
  10. * @mixin DeliveryNoteBuilder
  11. */
  12. class DeliveryNoteManager extends DocumentManager
  13. {
  14. public function getContainerFqcn(): string
  15. {
  16. return DeliveryNoteContainer::class;
  17. }
  18. }