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

21 行
503B

  1. <?php
  2. namespace common\logic\Config\TaxRate\Wrapper;
  3. use common\logic\AbstractManager;
  4. use common\logic\Config\TaxRate\Repository\TaxRateRepository;
  5. use common\logic\Config\TaxRate\Service\TaxRateBuilder;
  6. use common\logic\Config\TaxRate\Service\TaxRateDefinition;
  7. /**
  8. * @mixin TaxRateDefinition
  9. * @mixin TaxRateRepository
  10. * @mixin TaxRateBuilder
  11. */
  12. class TaxRateManager extends AbstractManager
  13. {
  14. public function getContainerFqcn(): string
  15. {
  16. return TaxRateContainer::class;
  17. }
  18. }