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

25 行
617B

  1. <?php
  2. namespace common\logic\Payment\Wrapper;
  3. use common\logic\AbstractManager;
  4. use common\logic\Payment\Repository\PaymentRepository;
  5. use common\logic\Payment\Service\PaymentUtils;
  6. use common\logic\Payment\Service\PaymentBuilder;
  7. use common\logic\Payment\Service\PaymentDefinition;
  8. use common\logic\Payment\Service\PaymentSolver;
  9. /**
  10. * @mixin PaymentDefinition
  11. * @mixin PaymentSolver
  12. * @mixin PaymentRepository
  13. * @mixin PaymentBuilder
  14. * @mixin PaymentUtils
  15. */
  16. class PaymentManager extends AbstractManager
  17. {
  18. public function getContainerFqcn(): string
  19. {
  20. return PaymentContainer::class;
  21. }
  22. }