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 lines
466B

  1. <?php
  2. namespace common\logic\Document\Quotation\Wrapper;
  3. use common\logic\Document\Document\Wrapper\DocumentManager;
  4. use common\logic\Document\Quotation\Repository\QuotationRepository;
  5. use common\logic\Document\Quotation\Service\QuotationBuilder;
  6. /**
  7. * @mixin QuotationRepository
  8. * @mixin QuotationBuilder
  9. */
  10. class QuotationManager extends DocumentManager
  11. {
  12. public function getContainerFqcn(): string
  13. {
  14. return QuotationContainer::class;
  15. }
  16. }