您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

21 行
537B

  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. /**
  8. * @mixin InvoiceDefinition
  9. * @mixin InvoiceRepository
  10. * @mixin InvoiceBuilder
  11. */
  12. class InvoiceManager extends DocumentManager
  13. {
  14. public function getContainerFqcn(): string
  15. {
  16. return InvoiceContainer::class;
  17. }
  18. }