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.

InvoiceManager.php 618B

1234567891011121314151617181920212223
  1. <?php
  2. namespace common\logic\Document\Invoice\Wrapper;
  3. use common\logic\Document\Document\Wrapper\DocumentManager;
  4. use common\logic\Document\Invoice\Repository\InvoiceRepository;
  5. use common\logic\Document\Invoice\Service\InvoiceBuilder;
  6. use common\logic\Document\Invoice\Service\InvoiceDefinition;
  7. use common\logic\Document\Invoice\Service\InvoiceSolver;
  8. /**
  9. * @mixin InvoiceDefinition
  10. * @mixin InvoiceSolver
  11. * @mixin InvoiceRepository
  12. * @mixin InvoiceBuilder
  13. */
  14. class InvoiceManager extends DocumentManager
  15. {
  16. public function getContainerFqcn(): string
  17. {
  18. return InvoiceContainer::class;
  19. }
  20. }