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

17 行
282B

  1. <?php
  2. namespace common\logic\Config\TaxRate;
  3. use common\logic\BaseManager;
  4. /**
  5. * @mixin TaxRateRepository
  6. * @mixin TaxRateBuilder
  7. */
  8. class TaxRateManager extends BaseManager
  9. {
  10. public function __construct()
  11. {
  12. $this->setContainer(new TaxRateContainer());
  13. }
  14. }